-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (33 loc) · 1014 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
34
35
36
37
38
39
[package]
name = "test-rust-esp"
version = "0.1.0"
authors = ["Yavanni <[email protected]>"]
edition = "2021"
resolver = "2"
rust-version = "1.71"
[profile.release]
opt-level = "s"
[profile.dev]
debug = true # Symbols are nice and they don't increase the size on Flash
opt-level = "z"
[features]
default = ["std", "embassy", "esp-idf-svc/native"]
pio = ["esp-idf-svc/pio"]
std = ["alloc", "esp-idf-svc/binstart", "esp-idf-svc/std"]
alloc = ["esp-idf-svc/alloc"]
nightly = ["esp-idf-svc/nightly"]
experimental = ["esp-idf-svc/experimental"]
embassy = ["esp-idf-svc/embassy-sync", "esp-idf-svc/critical-section", "esp-idf-svc/embassy-time-driver"]
[dependencies]
log = { version = "0.4", default-features = false }
anyhow = "=1.0.75"
embedded-svc = "=0.26.4"
esp-idf-svc = "=0.47.3"
shtcx = "=0.11.0"
toml-cfg = "=0.1.3"
rgb-led = {path="common/lib/rgb-led"}
ws2812-esp32-rmt-driver = "0.6.0"
smart-leds = "0.3.0"
smart-leds-trait = "0.2.1"
[build-dependencies]
embuild = "0.31.3"