summaryrefslogtreecommitdiff
path: root/nrf-softdevice
diff options
context:
space:
mode:
authorUlf Lilleengen <lulf@redhat.com>2022-08-25 11:23:38 +0200
committerUlf Lilleengen <lulf@redhat.com>2022-08-25 11:23:38 +0200
commite2c16d3f3e31129808ee6781ca88d6e788f4761e (patch)
treeb997268650094434506c4cac6f5bb9383a36ecc5 /nrf-softdevice
parente6dbc368d2e75d5442f5f52fb8343ed04e7a6c7d (diff)
downloadnrf-softdevice-e2c16d3f3e31129808ee6781ca88d6e788f4761e.zip
Update after embassy-util was split
Diffstat (limited to 'nrf-softdevice')
-rw-r--r--nrf-softdevice/Cargo.toml2
-rw-r--r--nrf-softdevice/src/events.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/nrf-softdevice/Cargo.toml b/nrf-softdevice/Cargo.toml
index 40f582c..e06cde8 100644
--- a/nrf-softdevice/Cargo.toml
+++ b/nrf-softdevice/Cargo.toml
@@ -42,7 +42,7 @@ critical-section-02 = { package = "critical-section", version = "0.2", optional
critical-section-1 = { package = "critical-section", version = "1.0", optional = true }
num_enum = { version = "0.5.1", default-features = false }
-embassy-util = { version = "0.1.0" }
+embassy-sync = { version = "0.1.0" }
cortex-m = "0.7.2"
cortex-m-rt = ">=0.6.15,<0.8"
heapless = "0.7.1"
diff --git a/nrf-softdevice/src/events.rs b/nrf-softdevice/src/events.rs
index 794f3df..98df169 100644
--- a/nrf-softdevice/src/events.rs
+++ b/nrf-softdevice/src/events.rs
@@ -1,7 +1,7 @@
use core::mem::MaybeUninit;
use core::task::Poll;
-use embassy_util::waitqueue::AtomicWaker;
+use embassy_sync::waitqueue::AtomicWaker;
use futures::future::poll_fn;
use num_enum::{IntoPrimitive, TryFromPrimitive};