-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (32 loc) · 892 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 = "esp32c3"
version = "0.1.0"
authors = ["Andrés Rodríguez <[email protected]>"]
edition = "2021"
resolver = "2"
[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]
pio = ["esp-idf-sys/pio"]
[dependencies]
once_cell = "1.16.0"
[target.'cfg(target_os = "espidf")'.dependencies]
esp-idf-sys = { version = "0.31.9", features = ["binstart"] }
embedded-hal = "=1.0.0-alpha.8"
esp-idf-hal = "0.38.1"
display-interface-spi = "0.4.1"
display-interface = "0.4.1"
embedded-graphics = "0.7.1"
ili9341 = "0.5.0"
[target.'cfg(target_os = "espidf")'.dependencies.slint]
version = "0.3.1"
default-features = false
# features = ["compat-0-3-0", "std"]
features = ["compat-0-3-0", "unsafe-single-threaded", "libm"]
[build-dependencies]
embuild = "0.30"
anyhow = "1"
slint-build = "0.3.1"