2022-07-09 02:13:43 +02:00
|
|
|
[package]
|
|
|
|
edition = "2021"
|
|
|
|
name = "embassy-rp-tests"
|
|
|
|
version = "0.1.0"
|
2022-10-07 12:41:56 +02:00
|
|
|
license = "MIT OR Apache-2.0"
|
2022-07-09 02:13:43 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2023-06-06 02:28:00 +02:00
|
|
|
teleprobe-meta = "1.1"
|
2023-05-30 00:10:36 +02:00
|
|
|
|
2023-10-31 09:18:00 +01:00
|
|
|
embassy-sync = { version = "0.4.0", path = "../../embassy-sync", features = ["defmt"] }
|
2023-11-27 01:21:44 +01:00
|
|
|
embassy-executor = { version = "0.3.3", path = "../../embassy-executor", features = ["task-arena-size-32768", "arch-cortex-m", "executor-thread", "defmt", "integrated-timers"] }
|
2023-11-29 17:23:48 +01:00
|
|
|
embassy-time = { version = "0.1.5", path = "../../embassy-time", features = ["defmt", ] }
|
|
|
|
embassy-rp = { version = "0.1.0", path = "../../embassy-rp", features = [ "defmt", "unstable-pac", "time-driver", "critical-section-impl", "intrinsics", "rom-v2-intrinsics", "run-from-ram"] }
|
2022-09-22 16:48:35 +02:00
|
|
|
embassy-futures = { version = "0.1.0", path = "../../embassy-futures" }
|
2023-11-29 17:23:48 +01:00
|
|
|
embassy-net = { version = "0.2.0", path = "../../embassy-net", features = ["defmt", "tcp", "udp", "dhcpv4", "medium-ethernet"] }
|
2023-08-16 17:51:47 +02:00
|
|
|
embassy-net-wiznet = { version = "0.1.0", path = "../../embassy-net-wiznet", features = ["defmt"] }
|
2023-06-06 02:28:00 +02:00
|
|
|
cyw43 = { path = "../../cyw43", features = ["defmt", "firmware-logs"] }
|
|
|
|
cyw43-pio = { path = "../../cyw43-pio", features = ["defmt", "overclock"] }
|
2023-09-28 03:46:33 +02:00
|
|
|
perf-client = { path = "../perf-client" }
|
2022-07-09 02:13:43 +02:00
|
|
|
|
|
|
|
defmt = "0.3.0"
|
2022-11-29 21:15:24 +01:00
|
|
|
defmt-rtt = "0.4"
|
2022-07-09 02:13:43 +02:00
|
|
|
|
2022-12-10 12:42:08 +01:00
|
|
|
cortex-m = { version = "0.7.6" }
|
2022-07-09 02:13:43 +02:00
|
|
|
cortex-m-rt = "0.7.0"
|
|
|
|
embedded-hal = "0.2.6"
|
2023-11-29 16:37:07 +01:00
|
|
|
embedded-hal-1 = { package = "embedded-hal", version = "=1.0.0-rc.2" }
|
|
|
|
embedded-hal-async = { version = "=1.0.0-rc.2" }
|
|
|
|
embedded-hal-bus = { version = "=0.1.0-rc.2", features = ["async"] }
|
2022-07-09 02:13:43 +02:00
|
|
|
panic-probe = { version = "0.3.0", features = ["print-defmt"] }
|
2022-07-10 06:47:08 +02:00
|
|
|
futures = { version = "0.3.17", default-features = false, features = ["async-await"] }
|
2023-11-29 16:37:07 +01:00
|
|
|
embedded-io-async = { version = "0.6.1" }
|
2022-10-26 10:01:52 +02:00
|
|
|
embedded-storage = { version = "0.3" }
|
2023-11-02 21:52:07 +01:00
|
|
|
static_cell = { version = "2", features = ["nightly"]}
|
|
|
|
portable-atomic = { version = "1.5", features = ["critical-section"] }
|
2023-07-07 04:30:46 +02:00
|
|
|
pio = "0.2"
|
|
|
|
pio-proc = "0.2"
|
2023-08-16 17:51:47 +02:00
|
|
|
rand = { version = "0.8.5", default-features = false }
|
2022-07-09 02:13:43 +02:00
|
|
|
|
|
|
|
[profile.dev]
|
|
|
|
debug = 2
|
|
|
|
debug-assertions = true
|
|
|
|
opt-level = 's'
|
|
|
|
overflow-checks = true
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
codegen-units = 1
|
|
|
|
debug = 2
|
|
|
|
debug-assertions = false
|
|
|
|
incremental = false
|
|
|
|
lto = "fat"
|
|
|
|
opt-level = 's'
|
|
|
|
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
|