embassy/examples/rpi-pico-w/Cargo.toml

68 lines
2.6 KiB
TOML
Raw Normal View History

2022-07-10 17:45:26 +00:00
[package]
name = "cyw43-example-rpi-pico-w"
version = "0.1.0"
edition = "2021"
[dependencies]
2023-02-19 15:31:35 +00:00
cyw43 = { path = "../../", features = ["defmt", "firmware-logs"] }
2023-03-27 16:04:48 +00:00
cyw43-pio = { path = "../../cyw43-pio" }
2023-04-07 17:54:05 +00:00
embassy-executor = { version = "0.1.0", features = ["defmt", "integrated-timers", "executor-thread", "arch-cortex-m"] }
embassy-time = { version = "0.1.0", features = ["defmt", "defmt-timestamp-uptime"] }
embassy-rp = { version = "0.1.0", features = ["defmt", "unstable-traits", "nightly", "unstable-pac", "time-driver", "pio"] }
embassy-net = { version = "0.1.0", features = ["defmt", "tcp", "dhcpv4", "medium-ethernet", "unstable-traits", "nightly"] }
2022-07-10 17:45:26 +00:00
atomic-polyfill = "0.1.5"
2022-08-22 15:24:43 +00:00
static_cell = "1.0"
2022-07-10 17:45:26 +00:00
defmt = "0.3"
defmt-rtt = "0.3"
panic-probe = { version = "0.3", features = ["print-defmt"] }
2023-02-19 15:31:35 +00:00
cortex-m = { version = "0.7.6", features = ["critical-section-single-core"] }
2022-07-10 17:45:26 +00:00
cortex-m-rt = "0.7.0"
futures = { version = "0.3.17", default-features = false, features = ["async-await", "cfg-target-has-atomic", "unstable"] }
2022-07-10 17:45:26 +00:00
2022-12-01 21:09:45 +00:00
embedded-io = { version = "0.4.0", features = ["async", "defmt"] }
2022-07-12 05:52:16 +00:00
heapless = "0.7.15"
2022-07-10 17:45:26 +00:00
[patch.crates-io]
2023-04-07 17:54:05 +00:00
embassy-executor = { git = "https://github.com/embassy-rs/embassy", rev = "047ea9066f0d946fd4d706577b21df38fd3b1647" }
embassy-time = { git = "https://github.com/embassy-rs/embassy", rev = "047ea9066f0d946fd4d706577b21df38fd3b1647" }
embassy-futures = { git = "https://github.com/embassy-rs/embassy", rev = "047ea9066f0d946fd4d706577b21df38fd3b1647" }
embassy-sync = { git = "https://github.com/embassy-rs/embassy", rev = "047ea9066f0d946fd4d706577b21df38fd3b1647" }
embassy-rp = { git = "https://github.com/embassy-rs/embassy", rev = "047ea9066f0d946fd4d706577b21df38fd3b1647" }
embassy-net = { git = "https://github.com/embassy-rs/embassy", rev = "047ea9066f0d946fd4d706577b21df38fd3b1647" }
embassy-net-driver = { git = "https://github.com/embassy-rs/embassy", rev = "047ea9066f0d946fd4d706577b21df38fd3b1647" }
embassy-net-driver-channel = { git = "https://github.com/embassy-rs/embassy", rev = "047ea9066f0d946fd4d706577b21df38fd3b1647" }
2022-07-10 17:45:26 +00:00
[profile.dev]
debug = 2
debug-assertions = true
opt-level = 1
overflow-checks = true
[profile.release]
codegen-units = 1
2022-12-27 00:19:26 +00:00
debug = 1
2022-07-10 17:45:26 +00:00
debug-assertions = false
incremental = false
lto = 'fat'
opt-level = 'z'
overflow-checks = false
# do not optimize proc-macro crates = faster builds from scratch
[profile.dev.build-override]
codegen-units = 8
debug = false
debug-assertions = false
opt-level = 0
overflow-checks = false
[profile.release.build-override]
codegen-units = 8
debug = false
debug-assertions = false
opt-level = 0
overflow-checks = false