cu29/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#![doc = include_str!("../README.md")]

// backward compatibility
pub use cu29_runtime::config;
pub use cu29_runtime::copperlist;
pub use cu29_runtime::curuntime;
pub use cu29_runtime::cutask;
pub use cu29_runtime::input_msg;
pub use cu29_runtime::monitoring;
pub use cu29_runtime::output_msg;
pub use cu29_runtime::payload;
pub use cu29_runtime::simulation;

pub use bincode;
pub use cu29_clock as clock;
pub use cu29_runtime::config::read_configuration;
pub use cu29_traits::*;

pub mod prelude {
    pub use cu29_clock::*;
    pub use cu29_derive::*;
    pub use cu29_intern_strs::*;
    pub use cu29_log::*;
    pub use cu29_log_derive::*;
    pub use cu29_log_runtime::*;
    pub use cu29_runtime::config::*;
    pub use cu29_runtime::copperlist::*;
    pub use cu29_runtime::curuntime::*;
    pub use cu29_runtime::cutask::*;
    pub use cu29_runtime::input_msg;
    pub use cu29_runtime::monitoring::*;
    pub use cu29_runtime::output_msg;
    pub use cu29_runtime::payload::*;
    pub use cu29_runtime::simulation::*;
    pub use cu29_runtime::*;
    pub use cu29_traits::*;
    pub use cu29_unifiedlog::*;
    pub use cu29_value::to_value;
    pub use cu29_value::Value;
    pub use pool::*;
}