-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
25 lines (22 loc) · 839 Bytes
/
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
[package]
name = "simple-fatfs"
version = "0.1.0-alpha.1"
edition = "2021"
description = "A simple-to-use FAT filesystem library for Rust (mainly targeted at embedded systems)"
license = "MIT"
repository = "https://github.com/Oakchris1955/simple-fatfs"
exclude = ["/.github", ".vscode", "/imgs", "**/*cliff*"]
[dependencies]
bincode = "1.3.3"
bitfield-struct = "0.8.0"
bitflags = { version = "2.6.0", features = ["serde"] }
displaydoc = { version = "0.2.5", default-features = false }
log = "0.4.22"
serde = { version = "1.0.204", default-features = false, features = [ "alloc", "derive" ] }
serde-big-array = "0.5.1"
time = { version = "0.3.36", default-features = false, features = [ "alloc", "parsing", "macros" ]}
[features]
default = ["std"]
std = ["displaydoc/std", "serde/std", "time/std"]
[dev-dependencies]
test-log = "0.2.16"