aboutsummaryrefslogtreecommitdiff
path: root/cyw43/Cargo.toml
diff options
context:
space:
mode:
authorumgefahren <[email protected]>2024-01-19 23:49:49 +0100
committerDario Nieuwenhuis <[email protected]>2024-01-19 23:51:57 +0100
commit6ca43030db125bd440c8e7383a4fc9c93bea7a4e (patch)
tree3f6ff1bfe7a3e7f4a4947f3918456da18f6fe7e6 /cyw43/Cargo.toml
parenta2eb46e9e458abec477a118ddbec12ae3f9f0900 (diff)
feat: Extended the Scan API
Diffstat (limited to 'cyw43/Cargo.toml')
-rw-r--r--cyw43/Cargo.toml4
1 files changed, 3 insertions, 1 deletions
diff --git a/cyw43/Cargo.toml b/cyw43/Cargo.toml
index c857f7378..64c38ea7a 100644
--- a/cyw43/Cargo.toml
+++ b/cyw43/Cargo.toml
@@ -10,7 +10,7 @@ repository = "https://github.com/embassy-rs/embassy"
10documentation = "https://docs.embassy.dev/cyw43" 10documentation = "https://docs.embassy.dev/cyw43"
11 11
12[features] 12[features]
13defmt = ["dep:defmt"] 13defmt = ["dep:defmt", "heapless/defmt-03"]
14log = ["dep:log"] 14log = ["dep:log"]
15 15
16# Fetch console logs from the WiFi firmware and forward them to `log` or `defmt`. 16# Fetch console logs from the WiFi firmware and forward them to `log` or `defmt`.
@@ -32,6 +32,8 @@ futures = { version = "0.3.17", default-features = false, features = ["async-awa
32embedded-hal-1 = { package = "embedded-hal", version = "1.0" } 32embedded-hal-1 = { package = "embedded-hal", version = "1.0" }
33num_enum = { version = "0.5.7", default-features = false } 33num_enum = { version = "0.5.7", default-features = false }
34 34
35heapless = "0.8.0"
36
35[package.metadata.embassy_docs] 37[package.metadata.embassy_docs]
36src_base = "https://github.com/embassy-rs/embassy/blob/cyw43-v$VERSION/cyw43/src/" 38src_base = "https://github.com/embassy-rs/embassy/blob/cyw43-v$VERSION/cyw43/src/"
37src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/cyw43/src/" 39src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/cyw43/src/"