forked from M-Labs/rust-fatfs
be8b18c1a2
This way it contains crate name.
31 lines
562 B
TOML
31 lines
562 B
TOML
[package]
|
|
name = "fatfs"
|
|
version = "0.1.0"
|
|
authors = ["Rafał Harabień <rafalh1992@o2.pl>"]
|
|
repository = "https://github.com/rafalh/rust-fatfs"
|
|
readme = "README.md"
|
|
keywords = ["fat", "filesystem"]
|
|
categories = ["filesystem"]
|
|
license = "MIT"
|
|
description = """
|
|
FAT filesystem library.
|
|
"""
|
|
exclude = [
|
|
"resources/*",
|
|
]
|
|
|
|
[badges]
|
|
travis-ci = { repository = "rafalh/rust-fat" }
|
|
|
|
[features]
|
|
default = ["chrono"]
|
|
|
|
[dependencies]
|
|
byteorder = "1"
|
|
bitflags = "1.0"
|
|
log = "0.3.8"
|
|
chrono = { version = "0.4", optional = true }
|
|
|
|
[dev-dependencies]
|
|
env_logger = "0.4.3"
|