-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
33 lines (28 loc) · 919 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
26
27
28
29
30
31
32
33
[package]
name = "fatfs-embedded"
version = "0.1.0"
edition = "2021"
license = "MIT"
license-file = "LICENSE"
description = "Rust bindings for the popular embedded FatFs library."
authors = ["Caleb Garrett"]
readme = "README.md"
repository = "https://github.com/caleb-garrett/fatfs-embedded"
keywords = ["embedded", "no_std", "fatfs", "embassy"]
categories = ["embedded", "filesystem", "external-ffi-bindings", "no-std"]
[build-dependencies]
cc = "1"
bindgen = "0.69"
[dependencies]
bitflags = "2.4.2"
embassy-futures = "0.1.1"
cty = "0.2.2"
[features]
default = ["chrono"]
chrono = ["dep:chrono"]
[target.'cfg(not(target_os = "none"))'.dependencies]
embassy-sync = { version = "0.5.0", features = ["std"] }
chrono = { version = "0.4.3", optional = true }
[target.'cfg(target_os = "none")'.dependencies]
embassy-sync = { version = "0.5.0" }
chrono = { version = "0.4.3", default-features = false, optional = true }