rust-fatfs/Cargo.toml

24 lines
472 B
TOML
Raw Normal View History

2017-09-22 08:13:29 +08:00
[package]
name = "fatfs"
2017-09-22 08:13:29 +08:00
version = "0.1.0"
authors = ["Rafał Harabień <rafalh1992@o2.pl>"]
repository = "https://github.com/rafalh/rust-fat"
readme = "README.md"
keywords = ["fat", "filesystem"]
categories = ["filesystem"]
license = "MIT"
description = """
FAT filesystem library.
"""
[badges]
travis-ci = { repository = "rafalh/rust-fat" }
2017-09-22 08:13:29 +08:00
2017-10-06 22:42:29 +08:00
[features]
default = ["chrono"]
2017-09-22 08:13:29 +08:00
[dependencies]
byteorder = "1"
2017-09-23 05:36:44 +08:00
bitflags = "1.0"
2017-10-06 22:42:29 +08:00
chrono = { version = "0.4", optional = true }