mirror of
https://github.com/embassy-rs/embassy.git
synced 2024-11-22 06:42:32 +00:00
40 lines
1.5 KiB
TOML
40 lines
1.5 KiB
TOML
[package]
|
|
name = "cyw43"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[features]
|
|
defmt = ["dep:defmt"]
|
|
log = ["dep:log"]
|
|
|
|
# Fetch console logs from the WiFi firmware and forward them to `log` or `defmt`.
|
|
firmware-logs = []
|
|
|
|
[dependencies]
|
|
embassy-time = { version = "0.1.0" }
|
|
embassy-sync = { version = "0.2.0" }
|
|
embassy-futures = { version = "0.1.0" }
|
|
embassy-net-driver-channel = { version = "0.1.0" }
|
|
atomic-polyfill = "0.1.5"
|
|
|
|
defmt = { version = "0.3", optional = true }
|
|
log = { version = "0.4.17", optional = true }
|
|
|
|
cortex-m = "0.7.6"
|
|
cortex-m-rt = "0.7.0"
|
|
futures = { version = "0.3.17", default-features = false, features = ["async-await", "cfg-target-has-atomic", "unstable"] }
|
|
|
|
embedded-hal-1 = { package = "embedded-hal", version = "1.0.0-alpha.10" }
|
|
num_enum = { version = "0.5.7", default-features = false }
|
|
|
|
[patch.crates-io]
|
|
embassy-time = { git = "https://github.com/embassy-rs/embassy", rev = "82f7e104d90a6628d1873017ea5ef6a7afb3b3f7" }
|
|
embassy-futures = { git = "https://github.com/embassy-rs/embassy", rev = "82f7e104d90a6628d1873017ea5ef6a7afb3b3f7" }
|
|
embassy-sync = { git = "https://github.com/embassy-rs/embassy", rev = "82f7e104d90a6628d1873017ea5ef6a7afb3b3f7" }
|
|
embassy-net-driver-channel = { git = "https://github.com/embassy-rs/embassy", rev = "82f7e104d90a6628d1873017ea5ef6a7afb3b3f7" }
|
|
embassy-rp = { git = "https://github.com/embassy-rs/embassy", rev = "82f7e104d90a6628d1873017ea5ef6a7afb3b3f7" }
|
|
|
|
[workspace]
|
|
members = ["cyw43-pio"]
|
|
default-members = ["cyw43-pio", "."]
|
|
exclude = ["examples"] |