#![feature(align_offset)]
#![feature(drain_filter)]
#[macro_use]
extern crate lazy_static;
extern crate num_cpus;
#[macro_use]
extern crate log;
pub mod libconfig {
pub const MAX_THREAD_COUNT: usize = 0;
pub const PREFERRED_THREAD_COUNT: usize = 0;
}
mod indexedarena;
mod stablearena;
pub mod arena {
pub use super::indexedarena::*;
pub use super::stablearena::*;
}
pub mod hashstore;
pub mod spscstate;
pub mod stdext;
pub mod store;
pub mod threadid;