2022-07-10 19:45:26 +02:00
|
|
|
[package]
|
|
|
|
name = "cyw43"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[features]
|
2022-08-13 15:37:30 +02:00
|
|
|
defmt = ["dep:defmt"]
|
2022-07-10 19:45:26 +02:00
|
|
|
log = ["dep:log"]
|
2022-08-13 15:37:30 +02:00
|
|
|
|
2022-12-25 22:50:27 +01:00
|
|
|
# Fetch console logs from the WiFi firmware and forward them to `log` or `defmt`.
|
|
|
|
firmware-logs = []
|
|
|
|
|
2022-07-10 19:45:26 +02:00
|
|
|
[dependencies]
|
2022-08-22 17:24:43 +02:00
|
|
|
embassy-time = { version = "0.1.0" }
|
2022-08-23 01:06:14 +02:00
|
|
|
embassy-sync = { version = "0.1.0" }
|
|
|
|
embassy-futures = { version = "0.1.0" }
|
2022-12-27 01:19:26 +01:00
|
|
|
embassy-net-driver-channel = { version = "0.1.0" }
|
2022-07-10 19:45:26 +02:00
|
|
|
atomic-polyfill = "0.1.5"
|
|
|
|
|
|
|
|
defmt = { version = "0.3", optional = true }
|
|
|
|
log = { version = "0.4.17", optional = true }
|
|
|
|
|
2023-04-27 19:37:19 +02:00
|
|
|
cortex-m = "0.7.6"
|
2022-07-10 19:45:26 +02:00
|
|
|
cortex-m-rt = "0.7.0"
|
|
|
|
futures = { version = "0.3.17", default-features = false, features = ["async-await", "cfg-target-has-atomic", "unstable"] }
|
|
|
|
|
2023-04-07 19:56:05 +02:00
|
|
|
embedded-hal-1 = { package = "embedded-hal", version = "1.0.0-alpha.10" }
|
2022-07-11 05:19:31 +02:00
|
|
|
num_enum = { version = "0.5.7", default-features = false }
|
2023-03-27 03:33:20 +02:00
|
|
|
|
|
|
|
[patch.crates-io]
|
2023-04-27 19:37:19 +02:00
|
|
|
embassy-time = { git = "https://github.com/embassy-rs/embassy", rev = "03d6363d5af5dcaf21b52734994a466ca593d2b6" }
|
|
|
|
embassy-futures = { git = "https://github.com/embassy-rs/embassy", rev = "03d6363d5af5dcaf21b52734994a466ca593d2b6" }
|
|
|
|
embassy-sync = { git = "https://github.com/embassy-rs/embassy", rev = "03d6363d5af5dcaf21b52734994a466ca593d2b6" }
|
|
|
|
embassy-net-driver-channel = { git = "https://github.com/embassy-rs/embassy", rev = "03d6363d5af5dcaf21b52734994a466ca593d2b6" }
|
|
|
|
embassy-rp = { git = "https://github.com/embassy-rs/embassy", rev = "03d6363d5af5dcaf21b52734994a466ca593d2b6" }
|
2023-03-27 18:04:48 +02:00
|
|
|
|
|
|
|
[workspace]
|
|
|
|
members = ["cyw43-pio"]
|
|
|
|
default-members = ["cyw43-pio", "."]
|
|
|
|
exclude = ["examples"]
|