forked from rafalh/rust-fatfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
48 lines (44 loc) · 1.26 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "fatfs"
version = "0.4.0"
authors = ["Rafał Harabień <[email protected]>"]
edition = "2018"
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/*",
]
[features]
# Use Rust std library
std = []
# LFN (Long File Name) support
lfn = []
# Use dynamic allocation. When used without std please enable core_io/collections
alloc = []
# Full Unicode support. Disabling it reduces code size by avoiding Unicode-aware character case conversion
unicode = []
# Enable only error-level logging
log_level_error = []
# Enable logging levels warn and up
log_level_warn = ["log_level_error"]
# Enable logging levels info and up
log_level_info = ["log_level_warn"]
# Enable logging levels debug and up
log_level_debug = ["log_level_info"]
# Enable all logging levels: trace and up
log_level_trace = ["log_level_debug"]
# Default features
default = ["chrono", "std", "alloc", "lfn", "unicode", "log_level_trace"]
[dependencies]
bitflags = "1.0"
log = "0.4"
chrono = { version = "0.4", default-features = false, features = ["clock"], optional = true }
[dev-dependencies]
env_logger = "0.9"
fscommon = "0.1"