[package] name = "fatfs" version = "0.2.0" authors = ["Rafał Harabień "] repository = "https://github.com/rafalh/rust-fatfs" readme = "README.md" keywords = ["fat", "filesystem", "no_std"] categories = ["filesystem"] license = "MIT" description = """ FAT filesystem library. """ exclude = [ "resources/*", ] [badges] travis-ci = { repository = "rafalh/rust-fatfs" } [features] std = [] default = ["chrono", "std"] [dependencies] byteorder = "1" bitflags = "1.0" log = "0.4" chrono = { version = "0.4", optional = true } core_io = { version = "0.1", features = ["collections"], optional = true } [dev-dependencies] env_logger = "0.5"