embassy/cyw43/Cargo.toml

49 lines
1.9 KiB
TOML
Raw Normal View History

2022-07-10 17:45:26 +00:00
[package]
name = "cyw43"
version = "0.2.0"
2022-07-10 17:45:26 +00:00
edition = "2021"
2024-01-11 23:32:47 +00:00
description = "Rust driver for the CYW43439 WiFi chip, used in the Raspberry Pi Pico W."
keywords = ["embedded", "cyw43", "embassy-net", "embedded-hal-async", "wifi"]
categories = ["embedded", "hardware-support", "no-std", "network-programming", "asynchronous"]
2024-01-11 23:32:47 +00:00
license = "MIT OR Apache-2.0"
repository = "https://github.com/embassy-rs/embassy"
documentation = "https://docs.embassy.dev/cyw43"
2022-07-10 17:45:26 +00:00
[features]
defmt = ["dep:defmt", "heapless/defmt-03", "embassy-time/defmt", "bt-hci?/defmt", "embedded-io-async?/defmt-03"]
2022-07-10 17:45:26 +00:00
log = ["dep:log"]
bluetooth = ["dep:bt-hci", "dep:embedded-io-async"]
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]
2024-08-02 17:20:26 +00:00
embassy-time = { version = "0.3.2", path = "../embassy-time"}
2024-05-29 10:09:55 +00:00
embassy-sync = { version = "0.6.0", path = "../embassy-sync"}
embassy-futures = { version = "0.1.0", path = "../embassy-futures"}
embassy-net-driver-channel = { version = "0.3.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"] }
2023-12-26 16:38:34 +00:00
embedded-hal-1 = { package = "embedded-hal", version = "1.0" }
num_enum = { version = "0.5.7", default-features = false }
2024-01-19 22:49:49 +00:00
heapless = "0.8.0"
# Bluetooth deps
embedded-io-async = { version = "0.6.0", optional = true }
2024-08-21 16:12:59 +00:00
bt-hci = { version = "0.1.0", optional = true }
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"]
2024-01-11 22:16:28 +00:00
[package.metadata.docs.rs]
features = ["defmt", "firmware-logs"]