-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (30 loc) · 825 Bytes
/
Cargo.toml
File metadata and controls
35 lines (30 loc) · 825 Bytes
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
[package]
name = "defmt-persist"
version = "0.1.0"
authors = ["Mathias Koch <mk@blackbird.online>"]
license = "MIT OR Apache-2.0"
edition = "2018"
readme = "README.md"
resolver = "2"
[dependencies]
cortex-m = "0.6.3"
embedded-hal = { version = "1.0.0-alpha.4" }
embedded-storage = { git = "https://github.com/rust-embedded-community/embedded-storage" }
defmt = { version = "^0.2.1" }
defmt-rtt = { version = "^0.2", optional = true }
bbqueue = "0.4.10"
nb = "*"
crc = { version = "1.8.1", default-features = false }
rzcobs = { version = "0.1.2", default-features = false }
[dev-dependencies]
rzcobs = { version = "0.1.2", features = ["std"] }
[features]
default = []
rtt = ["defmt-rtt"]
# do NOT modify these features
defmt-default = []
defmt-trace = []
defmt-debug = []
defmt-info = []
defmt-warn = []
defmt-error = []