2023-01-16 09:47:56 +00:00
|
|
|
#![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;
|
|
|
|
|
2023-02-20 09:14:23 +00:00
|
|
|
#[macro_use]
|
|
|
|
mod repr_c;
|
|
|
|
|
2023-01-16 09:47:56 +00:00
|
|
|
pub mod unsafe_life_time;
|