aboutsummaryrefslogtreecommitdiff
path: root/embassy-executor
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2023-11-02 21:52:07 +0100
committerDario Nieuwenhuis <[email protected]>2023-11-02 21:52:07 +0100
commit1f51367eb92830c4c2c36406444d255fddb6b283 (patch)
treec0b8829121fbe786e8ae922bd0e41dd4022ad40f /embassy-executor
parentd6f42eafad5582963a6d4c266f79425ed9b812e0 (diff)
Upgrade static-cell to v2.0
Diffstat (limited to 'embassy-executor')
-rw-r--r--embassy-executor/Cargo.toml1
-rw-r--r--embassy-executor/src/lib.rs1
2 files changed, 0 insertions, 2 deletions
diff --git a/embassy-executor/Cargo.toml b/embassy-executor/Cargo.toml
index d8cc3e8a7..8e36637a3 100644
--- a/embassy-executor/Cargo.toml
+++ b/embassy-executor/Cargo.toml
@@ -62,7 +62,6 @@ embassy-macros = { version = "0.2.1", path = "../embassy-macros" }
62embassy-time = { version = "0.1.5", path = "../embassy-time", optional = true} 62embassy-time = { version = "0.1.5", path = "../embassy-time", optional = true}
63atomic-polyfill = "1.0.1" 63atomic-polyfill = "1.0.1"
64critical-section = "1.1" 64critical-section = "1.1"
65static_cell = "1.1"
66 65
67# arch-cortex-m dependencies 66# arch-cortex-m dependencies
68cortex-m = { version = "0.7.6", optional = true } 67cortex-m = { version = "0.7.6", optional = true }
diff --git a/embassy-executor/src/lib.rs b/embassy-executor/src/lib.rs
index 020f9095c..f2c86d8e6 100644
--- a/embassy-executor/src/lib.rs
+++ b/embassy-executor/src/lib.rs
@@ -47,7 +47,6 @@ pub use spawner::*;
47pub mod _export { 47pub mod _export {
48 #[cfg(feature = "rtos-trace")] 48 #[cfg(feature = "rtos-trace")]
49 pub use rtos_trace::trace; 49 pub use rtos_trace::trace;
50 pub use static_cell::StaticCell;
51 50
52 /// Expands the given block of code when `embassy-executor` is compiled with 51 /// Expands the given block of code when `embassy-executor` is compiled with
53 /// the `rtos-trace-interrupt` feature. 52 /// the `rtos-trace-interrupt` feature.