rust-fatfs/src/lib.rs

23 lines
295 B
Rust
Raw Normal View History

2017-09-23 05:20:06 +08:00
#![crate_type = "lib"]
#![crate_name = "fatfs"]
2017-09-23 05:20:06 +08:00
extern crate byteorder;
extern crate core;
2017-09-23 05:20:06 +08:00
2017-09-23 05:36:44 +08:00
#[macro_use]
extern crate bitflags;
2017-10-06 22:42:29 +08:00
#[cfg(feature = "chrono")]
extern crate chrono;
2017-09-24 09:13:50 +08:00
mod fs;
mod dir;
mod file;
mod table;
mod utils;
2017-09-23 05:20:06 +08:00
pub use fs::*;
pub use dir::*;
pub use file::*;
pub use utils::*;