rust-fatfs/Cargo.toml

37 lines
768 B
TOML
Raw Normal View History

2017-09-22 08:13:29 +08:00
[package]
name = "fatfs"
2017-11-09 06:03:47 +08:00
version = "0.2.0"
2017-09-22 08:13:29 +08:00
authors = ["Rafał Harabień <rafalh1992@o2.pl>"]
repository = "https://github.com/rafalh/rust-fatfs"
readme = "README.md"
2018-05-10 07:00:24 +08:00
keywords = ["fat", "filesystem", "no_std"]
categories = ["filesystem"]
license = "MIT"
description = """
FAT filesystem library.
"""
exclude = [
"resources/*",
]
[badges]
2017-11-09 06:03:47 +08:00
travis-ci = { repository = "rafalh/rust-fatfs" }
2017-09-22 08:13:29 +08:00
2017-10-06 22:42:29 +08:00
[features]
2018-05-10 21:00:59 +08:00
# Use Rust std library
2018-05-10 07:00:24 +08:00
std = []
2018-05-10 21:00:59 +08:00
# Use dynamic allocation - required for LFN support
alloc = ["core_io/collections"]
# Default features
default = ["chrono", "std", "alloc"]
2017-10-06 22:42:29 +08:00
2017-09-22 08:13:29 +08:00
[dependencies]
byteorder = "1"
2017-09-23 05:36:44 +08:00
bitflags = "1.0"
2018-04-28 21:00:01 +08:00
log = "0.4"
2017-10-06 22:42:29 +08:00
chrono = { version = "0.4", optional = true }
2018-05-10 21:00:59 +08:00
core_io = { version = "0.1", optional = true }
[dev-dependencies]
2018-04-28 21:00:01 +08:00
env_logger = "0.5"