-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (34 loc) · 1.29 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
[package]
name = "radio-at86rf23x"
description = "Driver for the Microchip at86rf23x series of 2.4GHz RF ICs"
repository = "https://github.com/rust-iot/rust-radio-at86rf23x"
authors = ["Ryan Kurte <[email protected]>"]
license = "MPL-2.0"
version = "0.2.0"
edition = "2021"
[features]
util = ["structopt", "tracing", "tracing-subscriber", "humantime", "driver-pal/hal", "thiserror", "anyhow", "radio/helpers" ]
default = [ "util", "driver-pal/hal-cp2130", "driver-pal/hal-linux" ]
[dependencies]
radio = "0.11.0"
embedded-hal = "1.0.0-alpha.7"
driver-pal = { version = "0.8.0-alpha.6", default_features = false }
structopt = { version = "0.3.25", optional = true }
thiserror = { version = "1.0.30", optional = true }
humantime = { version = "2.1.0", optional = true }
tracing = { version = "0.1.25", optional = true }
tracing-subscriber = { version = "0.2.16", optional = true }
serde = { version = "1.0.130", optional = true }
defmt = { version = "0.3.0", optional = true }
anyhow = { version = "1.0.44", optional = true }
log = "0.4.14"
bitflags = "1.3.2"
strum_macros = "0.22.0"
num_enum = { version = "0.5.4", default-features = false }
modular-bitfield = "0.11.2"
[[bin]]
name = "at86rf23x-util"
path = "src/util/main.rs"
required-features = [ "util" ]
[patch.crates-io]
#radio = { path = "../radio-hal" }