1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#![feature(needs_panic_runtime)]
#![feature(optin_builtin_traits)]
#![feature(alloc)]
#![feature(const_fn)]
#![feature(unboxed_closures)]

#![no_std]

// #[cfg(not(test))]
// extern crate silica_panic;
// extern crate silica_allocator as allocator;
extern crate alloc as liballoc;

pub mod alloc {
//    pub use allocator::init;
}

pub mod thread;
pub mod sync;

pub mod time;
pub mod io;

pub mod peripheral;