aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2023-04-21 14:37:04 +0200
committerDario Nieuwenhuis <[email protected]>2023-04-21 14:37:04 +0200
commit6a1a3e6877053b1b72adb3c1446f4f077ad3b03e (patch)
treeed7176adbe31bc8e32b0e6c3f7a0bc7fcd5ffa7e /examples
parentefb67dfc1b782487ee8584211bda3dc16812b5dc (diff)
Workaround regex breaking change.
Diffstat (limited to 'examples')
-rw-r--r--examples/rpi-pico-w/Cargo.toml3
1 files changed, 3 insertions, 0 deletions
diff --git a/examples/rpi-pico-w/Cargo.toml b/examples/rpi-pico-w/Cargo.toml
index dca796e3d..d211f9260 100644
--- a/examples/rpi-pico-w/Cargo.toml
+++ b/examples/rpi-pico-w/Cargo.toml
@@ -25,6 +25,9 @@ futures = { version = "0.3.17", default-features = false, features = ["async-awa
25embedded-io = { version = "0.4.0", features = ["async", "defmt"] } 25embedded-io = { version = "0.4.0", features = ["async", "defmt"] }
26heapless = "0.7.15" 26heapless = "0.7.15"
27 27
28[build-dependencies]
29# Workaround https://github.com/embassy-rs/cyw43/issues/68
30regex = { version = "~1.7.3", default-features = false }
28 31
29[patch.crates-io] 32[patch.crates-io]
30embassy-executor = { git = "https://github.com/embassy-rs/embassy", rev = "047ea9066f0d946fd4d706577b21df38fd3b1647" } 33embassy-executor = { git = "https://github.com/embassy-rs/embassy", rev = "047ea9066f0d946fd4d706577b21df38fd3b1647" }