forked from M-Labs/rust-fatfs
f32f1c7279
No cluster management yet. Also BufStream is broken when writing.
23 lines
295 B
Rust
23 lines
295 B
Rust
#![crate_type = "lib"]
|
|
#![crate_name = "fatfs"]
|
|
|
|
extern crate byteorder;
|
|
extern crate core;
|
|
|
|
#[macro_use]
|
|
extern crate bitflags;
|
|
|
|
#[cfg(feature = "chrono")]
|
|
extern crate chrono;
|
|
|
|
mod fs;
|
|
mod dir;
|
|
mod file;
|
|
mod table;
|
|
mod utils;
|
|
|
|
pub use fs::*;
|
|
pub use dir::*;
|
|
pub use file::*;
|
|
pub use utils::*;
|