aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2021-05-14 00:01:07 +0200
committerGitHub <[email protected]>2021-05-14 00:01:07 +0200
commitcd4111736c0384b1ef957df7f6aa51e3727c29b2 (patch)
tree230fb447740d2f9bc4b6e5d82505cf950c41011b
parent4705333b5e7b54ee2e14fb4f9741c95edb8bb76a (diff)
parent3b86e85770466b77a9e40731104b49fc46e30224 (diff)
Merge pull request #177 from lulf/bump-critical-section-version
Bump version of critical-section to 0.2.1
-rw-r--r--embassy-nrf/Cargo.toml2
-rw-r--r--embassy-rp/Cargo.toml2
-rw-r--r--embassy-stm32/Cargo.toml4
-rw-r--r--embassy/Cargo.toml2
4 files changed, 5 insertions, 5 deletions
diff --git a/embassy-nrf/Cargo.toml b/embassy-nrf/Cargo.toml
index b8b63bbb1..f482f0493 100644
--- a/embassy-nrf/Cargo.toml
+++ b/embassy-nrf/Cargo.toml
@@ -36,4 +36,4 @@ nrf52811-pac = { version = "0.9.1", optional = true, features = [ "rt" ]}
36nrf52832-pac = { version = "0.9.0", optional = true, features = [ "rt" ]} 36nrf52832-pac = { version = "0.9.0", optional = true, features = [ "rt" ]}
37nrf52833-pac = { version = "0.9.0", optional = true, features = [ "rt" ]} 37nrf52833-pac = { version = "0.9.0", optional = true, features = [ "rt" ]}
38nrf52840-pac = { version = "0.9.0", optional = true, features = [ "rt" ]} 38nrf52840-pac = { version = "0.9.0", optional = true, features = [ "rt" ]}
39critical-section = "0.2.0" 39critical-section = "0.2.1"
diff --git a/embassy-rp/Cargo.toml b/embassy-rp/Cargo.toml
index 59331dd1d..80c1a8696 100644
--- a/embassy-rp/Cargo.toml
+++ b/embassy-rp/Cargo.toml
@@ -20,7 +20,7 @@ defmt = { version = "0.2.0", optional = true }
20log = { version = "0.4.11", optional = true } 20log = { version = "0.4.11", optional = true }
21cortex-m-rt = "0.6.13" 21cortex-m-rt = "0.6.13"
22cortex-m = "0.7.1" 22cortex-m = "0.7.1"
23critical-section = "0.2.0" 23critical-section = "0.2.1"
24 24
25rp2040-pac2 = { git = "https://github.com/Dirbaio/rp2040-pac", rev="254f4677937801155ca3cb17c7bb9d38eb62683e", features = ["rt"] } 25rp2040-pac2 = { git = "https://github.com/Dirbaio/rp2040-pac", rev="254f4677937801155ca3cb17c7bb9d38eb62683e", features = ["rt"] }
26embedded-hal = { version = "0.2.4", features = [ "unproven" ] } 26embedded-hal = { version = "0.2.4", features = [ "unproven" ] }
diff --git a/embassy-stm32/Cargo.toml b/embassy-stm32/Cargo.toml
index 36bc0f25e..1eeb2d21d 100644
--- a/embassy-stm32/Cargo.toml
+++ b/embassy-stm32/Cargo.toml
@@ -39,7 +39,7 @@ embassy-macros = { version = "0.1.0", path = "../embassy-macros", features = ["s
39embassy-extras = {version = "0.1.0", path = "../embassy-extras" } 39embassy-extras = {version = "0.1.0", path = "../embassy-extras" }
40 40
41atomic-polyfill = "0.1.1" 41atomic-polyfill = "0.1.1"
42critical-section = "0.2.0" 42critical-section = "0.2.1"
43defmt = { version = "0.2.0", optional = true } 43defmt = { version = "0.2.0", optional = true }
44log = { version = "0.4.11", optional = true } 44log = { version = "0.4.11", optional = true }
45cortex-m-rt = "0.6.13" 45cortex-m-rt = "0.6.13"
@@ -50,4 +50,4 @@ bxcan = "0.5.0"
50nb = "*" 50nb = "*"
51stm32f4xx-hal = { version = "0.9.0", features = ["rt", "can", "usb_fs"], optional = true } 51stm32f4xx-hal = { version = "0.9.0", features = ["rt", "can", "usb_fs"], optional = true }
52stm32l0xx-hal = { version = "0.7.0", features = ["rt"], optional = true } 52stm32l0xx-hal = { version = "0.7.0", features = ["rt"], optional = true }
53futures = { version = "0.3.5", default-features = false, features = ["async-await"] } \ No newline at end of file 53futures = { version = "0.3.5", default-features = false, features = ["async-await"] }
diff --git a/embassy/Cargo.toml b/embassy/Cargo.toml
index 2395eeae7..6364f9902 100644
--- a/embassy/Cargo.toml
+++ b/embassy/Cargo.toml
@@ -25,7 +25,7 @@ pin-project = { version = "1.0.2", default-features = false }
25embassy-macros = { version = "0.1.0", path = "../embassy-macros"} 25embassy-macros = { version = "0.1.0", path = "../embassy-macros"}
26embassy-traits = { version = "0.1.0", path = "../embassy-traits"} 26embassy-traits = { version = "0.1.0", path = "../embassy-traits"}
27atomic-polyfill = { version = "0.1.1" } 27atomic-polyfill = { version = "0.1.1" }
28critical-section = "0.2.0" 28critical-section = "0.2.1"
29 29
30# Workaround https://github.com/japaric/cast.rs/pull/27 30# Workaround https://github.com/japaric/cast.rs/pull/27
31cast = { version = "=0.2.3", default-features = false } 31cast = { version = "=0.2.3", default-features = false }