20 lines
306 B
Rust
20 lines
306 B
Rust
#![deny(rust_2018_idioms)]
|
|
|
|
pub mod asyncthread;
|
|
pub mod random;
|
|
//pub mod hashvector;
|
|
pub mod color;
|
|
pub mod future;
|
|
pub mod helperfunctions;
|
|
pub mod prelude;
|
|
//pub mod closures;
|
|
|
|
pub mod try_lock_guard;
|
|
|
|
pub mod arc_unique_vec;
|
|
pub mod rc_unique_vec;
|
|
|
|
#[macro_use]
|
|
mod repr_c;
|
|
|
|
pub mod unsafe_life_time;
|