-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
75 lines (71 loc) · 1.89 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[package]
name = "esp-hub75"
edition = "2021"
version = "0.1.0"
authors = ["liebman <liebman@zod.com>"]
license = "MIT OR Apache-2.0"
rust-version = "1.71"
[dependencies]
bitfield = { version = "0.17.0" }
cfg-if = "1.0.0"
critical-section = { version = "1.1.2" }
defmt = { version = "0.3.8", optional = true }
embedded-graphics = { version = "0.8.1" }
embedded-hal = { version = "1.0.0" }
embedded-hal-async = { version = "1.0.0" }
esp-hal = { version = "0.21.1" }
esp-hal-procmacros = { version = "0.14.0", features = ["ram"] }
fugit = { version = "0.3.7" }
log = { version = "0.4.22", optional = true }
static_cell = { version = "2.1", features = ["nightly"] }
xtensa-lx-rt = { version = "0.17.1", optional = true }
[build-dependencies]
esp-build = "0.1.0"
[dev-dependencies]
defmt-rtt = { version = "0.4.1" }
embassy-embedded-hal = { version = "0.2.0" }
embassy-executor = { version = "0.6.0" }
embassy-sync = { version = "0.6.0" }
embassy-time = { version = "0.3.0", features = ["generic-queue"] }
esp-backtrace = { version = "0.14.2", features = [
"panic-handler",
"exception-handler",
] }
esp-println = { version = "0.12.0" }
esp-hal-embassy = { version = "0.4.0" }
heapless = { version = "0.8.0", features = ["ufmt"] }
[features]
default = []
esp32 = [
"esp-hal/esp32",
"esp-backtrace/esp32",
"esp-hal-embassy/esp32",
"esp-println/esp32",
]
esp32s3 = [
"esp-hal/esp32s3",
"esp-backtrace/esp32s3",
"esp-hal-embassy/esp32s3",
"esp-println/esp32s3",
]
esp32c6 = [
"esp-hal/esp32c6",
"esp-backtrace/esp32c6",
"esp-hal-embassy/esp32c6",
"esp-println/esp32c6",
]
debug = ["esp-hal/debug"]
defmt = [
"dep:defmt",
"esp-backtrace/defmt",
"fugit/defmt"
]
log = [
"dep:log",
"esp-backtrace/println",
"esp-println/auto",
"esp-println/log",
"esp-println/colors",
]
xtensa-lx-rt = ["dep:xtensa-lx-rt"]
valid-pin = [] # only for parl_io debugging