fatfs/Cargo.toml.orig

38 lines
880 B
TOML
Raw Normal View History

2024-07-21 14:20:26 +08:00
[package]
name = "fatfs"
version = "0.3.5"
authors = ["Rafał Harabień <rafalh92@outlook.com>"]
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]
# Use Rust std library
std = ["byteorder/std"]
# Use dynamic allocation - required for LFN support. When used without std please enable core_io/collections
alloc = []
# Default features
default = ["chrono", "std", "alloc"]
[dependencies]
byteorder = { version = "1", default-features = false }
bitflags = "1.0"
log = "0.4"
chrono = { version = "0.4", optional = true }
core_io = { version = "0.1", optional = true }
[dev-dependencies]
env_logger = "0.5"
fscommon = "0.1"