Skip to content

Commit

Permalink
Add features back
Browse files Browse the repository at this point in the history
  • Loading branch information
vertexclique committed Nov 3, 2019
1 parent 04ad717 commit 2cca130
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion bastion-executor/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@
//! NUMA-aware SMP based Fault-tolerant Executor
//!
// Allocator features
#![feature(allocator_api)]
#![feature(extern_types)]
#![feature(core_intrinsics)]
#![feature(libstd_sys_internals)]
#![feature(thread_local)]
#![feature(const_fn)]
// Force missing implementations
#![warn(missing_docs)]
#![warn(missing_debug_implementations)]
Expand All @@ -23,5 +30,4 @@ pub mod worker;
pub mod prelude {
pub use crate::pool::*;
pub use crate::run::*;
pub use crate::allocator::*;
}

0 comments on commit 2cca130

Please sign in to comment.