aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Munns <[email protected]>2024-01-17 16:09:59 +0100
committerJames Munns <[email protected]>2024-01-17 16:09:59 +0100
commit3c2a954d1b393644e7a8db7cc6460e739ad2109d (patch)
tree4a9baa0da526927ca21e4d6824ac011f91f788cb
parent01ac4ee43114f5ba5d326d99ad76873c96bbbb48 (diff)
Pin dep to work around regression
-rw-r--r--embassy-stm32-wpan/Cargo.toml4
1 files changed, 3 insertions, 1 deletions
diff --git a/embassy-stm32-wpan/Cargo.toml b/embassy-stm32-wpan/Cargo.toml
index 4f53a400a..fe6b968ef 100644
--- a/embassy-stm32-wpan/Cargo.toml
+++ b/embassy-stm32-wpan/Cargo.toml
@@ -34,7 +34,9 @@ aligned = "0.4.1"
34 34
35bit_field = "0.10.2" 35bit_field = "0.10.2"
36stm32-device-signature = { version = "0.3.3", features = ["stm32wb5x"] } 36stm32-device-signature = { version = "0.3.3", features = ["stm32wb5x"] }
37stm32wb-hci = { version = "0.17.0", optional = true } 37# NOTE: pinned to avoid regression:
38# https://github.com/OueslatiGhaith/stm32wb-hci/issues/8
39stm32wb-hci = { version = "=0.17.0", optional = true }
38futures = { version = "0.3.17", default-features = false, features = ["async-await"] } 40futures = { version = "0.3.17", default-features = false, features = ["async-await"] }
39bitflags = { version = "2.3.3", optional = true } 41bitflags = { version = "2.3.3", optional = true }
40 42