aboutsummaryrefslogtreecommitdiff
path: root/embassy-executor
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2023-06-01 01:32:11 +0200
committerDario Nieuwenhuis <[email protected]>2023-06-01 01:42:34 +0200
commit1d8321b821d114b369d5a087a1a7a6600228b032 (patch)
tree605b3eb96ea10120f7e8bf0741bcc34daab8e9ec /embassy-executor
parentd7d66bd74f2ef1bc8903b15df630ddbb8fe97df4 (diff)
Use make_static! from static-cell v1.1
Diffstat (limited to 'embassy-executor')
-rw-r--r--embassy-executor/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-executor/Cargo.toml b/embassy-executor/Cargo.toml
index ce032479d..1e5494ef8 100644
--- a/embassy-executor/Cargo.toml
+++ b/embassy-executor/Cargo.toml
@@ -65,7 +65,7 @@ embassy-macros = { version = "0.2.0", path = "../embassy-macros" }
65embassy-time = { version = "0.1.0", path = "../embassy-time", optional = true} 65embassy-time = { version = "0.1.0", path = "../embassy-time", optional = true}
66atomic-polyfill = "1.0.1" 66atomic-polyfill = "1.0.1"
67critical-section = "1.1" 67critical-section = "1.1"
68static_cell = "1.0" 68static_cell = "1.1"
69 69
70# arch-cortex-m dependencies 70# arch-cortex-m dependencies
71cortex-m = { version = "0.7.6", optional = true } 71cortex-m = { version = "0.7.6", optional = true }