1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#![deny(clippy::pedantic)]

#[macro_use]
extern crate contracts;

#[macro_use]
extern crate log;

pub mod biodiversity;
pub mod event_counter;
pub mod execution_time;
pub mod progress;
pub mod verbose;

necsim_plugins_core::export_plugin!(
    Biodiversity => biodiversity::BiodiversityReporter,
    Progress => progress::ProgressReporter,
    Execution => execution_time::ExecutionTimeReporter,
    Counter => event_counter::EventCounterReporter,
    Verbose => verbose::VerboseReporter,
);