69 lines
2.2 KiB
TOML
69 lines
2.2 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 }
|
|
ag-lcd = { version = "0.3", features = ["ufmt"] }
|
|
as5600 = "0.8.0"
|
|
embassy-executor = { version = "0.10.0", default-features = false }
|
|
embassy-futures = "0.1.2"
|
|
embassy-net = { version = "0.9.1", features = ["dhcpv4", "dns", "icmp", "tcp", "udp", "raw", "proto-ipv4", "proto-ipv6", "multicast"] }
|
|
embassy-sync = "0.8.0"
|
|
embedded-io-async = "0.6.1"
|
|
embedded-io = "0.7.1"
|
|
esp-bootloader-esp-idf = { version = "0.5.0", features = ["esp32"] }
|
|
esp-hal = { version = "1.1.1", features = ["esp32", "rt", "unstable"] }
|
|
esp-alloc = { version = "0.10.0", features = ["esp32"] }
|
|
esp-println = { version = "0.17.0", features = ["esp32"] }
|
|
esp-radio = { version = "0.18.0", features = ["esp32", "wifi", "esp-alloc", "unstable"] }
|
|
esp-rtos = { version = "0.3.0", features = ["esp32", "embassy", "esp-alloc", "esp-radio"] }
|
|
embassy-time = { version = "0.5.1", features = [
|
|
"defmt",
|
|
"defmt-timestamp-uptime",
|
|
] }
|
|
esp-backtrace = { version = "0.19.0", features = ["esp32", "println"] }
|
|
static_cell = "2.1.1"
|
|
log = "0.4"
|
|
ufmt = "0.2.0"
|
|
owned_str = "0.1.2"
|
|
|
|
[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.6.1"
|
|
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"] }
|