embassy/cyw43/Cargo.toml

34 lines
1.1 KiB
TOML
Raw Normal View History

2022-07-10 17:45:26 +00:00
[package]
name = "cyw43"
version = "0.1.0"
edition = "2021"
[features]
2022-08-13 13:37:30 +00:00
defmt = ["dep:defmt"]
2022-07-10 17:45:26 +00:00
log = ["dep:log"]
2022-08-13 13:37:30 +00:00
# Fetch console logs from the WiFi firmware and forward them to `log` or `defmt`.
firmware-logs = []
2022-07-10 17:45:26 +00:00
[dependencies]
2023-10-16 18:07:48 +00:00
embassy-time = { version = "0.1.5", path = "../embassy-time"}
embassy-sync = { version = "0.4.0", path = "../embassy-sync"}
embassy-futures = { version = "0.1.0", path = "../embassy-futures"}
embassy-net-driver-channel = { version = "0.2.0", path = "../embassy-net-driver-channel"}
2022-07-10 17:45:26 +00:00
defmt = { version = "0.3", optional = true }
log = { version = "0.4.17", optional = true }
2023-04-27 17:37:19 +00:00
cortex-m = "0.7.6"
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"] }
embedded-hal-1 = { package = "embedded-hal", version = "1.0.0-rc.1" }
num_enum = { version = "0.5.7", default-features = false }
2023-05-31 22:15:37 +00:00
[package.metadata.embassy_docs]
src_base = "https://github.com/embassy-rs/embassy/blob/cyw43-v$VERSION/cyw43/src/"
src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/cyw43/src/"
target = "thumbv6m-none-eabi"
2023-08-28 15:00:18 +00:00
features = ["defmt", "firmware-logs"]