48 lines
1.3 KiB
TOML
48 lines
1.3 KiB
TOML
[package]
|
|
name = "esp32"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[profile.release]
|
|
debug = true
|
|
debug-assertions = true
|
|
lto = "fat"
|
|
codegen-units = 1
|
|
|
|
|
|
[dependencies]
|
|
[target.'cfg(target_arch = "xtensa")'.dependencies]
|
|
arrayvec = { version = "0.7.6", default-features = false }
|
|
embedded-io = "0.7.1"
|
|
esp-hal = { version = "1.0.0", features = ["esp32", "rt"] }
|
|
|
|
[target.'cfg(target_arch = "arm")'.dependencies]
|
|
embedded-hal-compat = "0.13.0"
|
|
ufmt = "0.2.0"
|
|
log = "0.4"
|
|
ag-lcd={ version = "0.3", features = ["ufmt"]}
|
|
as5600 = "0.8.0"
|
|
embassy-futures = "0.1.2"
|
|
embedded-io-async = "0.7.0"
|
|
embedded-io = "0.7.1"
|
|
owned_str = "0.1.2"
|
|
embassy-sync = "0.8.0"
|
|
embassy-net = { version = "0.9.1",features = ["defmt", "icmp", "tcp", "udp", "raw", "dhcpv4", "medium-ethernet", "dns", "proto-ipv4", "proto-ipv6", "multicast"]}
|
|
embassy-executor = { version = "0.10.0", features = [
|
|
"platform-cortex-m",
|
|
"executor-thread",
|
|
"executor-interrupt",
|
|
"defmt",
|
|
] }
|
|
embassy-time = { version = "0.5.1", features = [
|
|
"defmt",
|
|
"defmt-timestamp-uptime",
|
|
] }
|
|
|
|
critical-section = "1.2.0"
|
|
static_cell = "2.1.1"
|
|
portable-atomic = { version = "1.13.1", features = ["critical-section"] }
|
|
|
|
defmt = "1.0.1"
|
|
defmt-rtt = "1.1.0"
|
|
panic-probe = { version = "1.0.0", features = ["print-defmt"] }
|