1 2 3 4 5 6 7 8 9 10 11 12 13
#![cfg_attr(not(any(test, feature = "std")), no_std)] #![feature(async_closure)] extern crate alloc; pub mod dev; pub mod dirty; pub mod file; pub mod util; pub mod vfs; #[cfg(any(test, feature = "std"))] mod std;
1 2 3 4 5 6 7 8 9 10 11 12 13
#![cfg_attr(not(any(test, feature = "std")), no_std)] #![feature(async_closure)] extern crate alloc; pub mod dev; pub mod dirty; pub mod file; pub mod util; pub mod vfs; #[cfg(any(test, feature = "std"))] mod std;