2017-09-22 08:13:29 +08:00
|
|
|
[package]
|
2017-10-06 23:00:38 +08:00
|
|
|
name = "fatfs"
|
2023-01-17 08:02:05 +08:00
|
|
|
version = "0.3.6"
|
2018-10-20 19:53:22 +08:00
|
|
|
authors = ["Rafał Harabień <rafalh92@outlook.com>"]
|
2017-11-09 06:00:30 +08:00
|
|
|
repository = "https://github.com/rafalh/rust-fatfs"
|
2017-10-06 23:00:38 +08:00
|
|
|
readme = "README.md"
|
2018-05-10 07:00:24 +08:00
|
|
|
keywords = ["fat", "filesystem", "no_std"]
|
2017-10-06 23:00:38 +08:00
|
|
|
categories = ["filesystem"]
|
|
|
|
license = "MIT"
|
|
|
|
description = """
|
|
|
|
FAT filesystem library.
|
|
|
|
"""
|
2017-10-07 23:02:22 +08:00
|
|
|
exclude = [
|
|
|
|
"resources/*",
|
|
|
|
]
|
2017-10-06 23:00:38 +08:00
|
|
|
|
|
|
|
[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
|
2019-07-17 23:40:32 +08:00
|
|
|
std = ["byteorder/std"]
|
2018-05-10 21:14:09 +08:00
|
|
|
# Use dynamic allocation - required for LFN support. When used without std please enable core_io/collections
|
|
|
|
alloc = []
|
2018-05-10 21:00:59 +08:00
|
|
|
# Default features
|
2024-12-13 16:37:23 +08:00
|
|
|
default = ["std", "alloc"]
|
2017-10-06 22:42:29 +08:00
|
|
|
|
2017-09-22 08:13:29 +08:00
|
|
|
[dependencies]
|
2024-12-13 16:37:23 +08:00
|
|
|
byteorder = { version = ">=1.3, <1.5", default-features = false }
|
2017-09-23 05:36:44 +08:00
|
|
|
bitflags = "1.0"
|
2024-12-13 16:37:23 +08:00
|
|
|
log = ">=0.4.14, <0.4.19"
|
2017-10-15 06:55:19 +08:00
|
|
|
|
2024-12-13 16:37:23 +08:00
|
|
|
[dependencies.core_io]
|
|
|
|
git = "https://git.m-labs.hk/srenblad/rs-core_io.git"
|
|
|
|
branch = "main"
|
|
|
|
optional = true
|