rust-fatfs/src/lib.rs
Rafał Harabień f32f1c7279 Basic write support for files.
No cluster management yet.
Also BufStream is broken when writing.
2017-10-09 14:59:52 +02:00

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::*;