aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--embassy-nrf/Cargo.toml14
-rw-r--r--examples/nrf/Cargo.toml2
2 files changed, 8 insertions, 8 deletions
diff --git a/embassy-nrf/Cargo.toml b/embassy-nrf/Cargo.toml
index 7a6963f9b..cc3597521 100644
--- a/embassy-nrf/Cargo.toml
+++ b/embassy-nrf/Cargo.toml
@@ -42,10 +42,10 @@ futures = { version = "0.3.5", default-features = false }
42critical-section = "0.2.1" 42critical-section = "0.2.1"
43rand_core = "0.6.3" 43rand_core = "0.6.3"
44 44
45nrf52805-pac = { version = "0.10.0", optional = true, features = [ "rt" ]} 45nrf52805-pac = { version = "0.10.1", optional = true, features = [ "rt" ]}
46nrf52810-pac = { version = "0.10.0", optional = true, features = [ "rt" ]} 46nrf52810-pac = { version = "0.10.1", optional = true, features = [ "rt" ]}
47nrf52811-pac = { version = "0.10.0", optional = true, features = [ "rt" ]} 47nrf52811-pac = { version = "0.10.1", optional = true, features = [ "rt" ]}
48nrf52820-pac = { version = "0.10.0", optional = true, features = [ "rt" ]} 48nrf52820-pac = { version = "0.10.1", optional = true, features = [ "rt" ]}
49nrf52832-pac = { version = "0.10.0", optional = true, features = [ "rt" ]} 49nrf52832-pac = { version = "0.10.1", optional = true, features = [ "rt" ]}
50nrf52833-pac = { version = "0.10.0", optional = true, features = [ "rt" ]} 50nrf52833-pac = { version = "0.10.1", optional = true, features = [ "rt" ]}
51nrf52840-pac = { version = "0.10.0", optional = true, features = [ "rt" ]} 51nrf52840-pac = { version = "0.10.1", optional = true, features = [ "rt" ]}
diff --git a/examples/nrf/Cargo.toml b/examples/nrf/Cargo.toml
index 8db0ad53f..f410f89c1 100644
--- a/examples/nrf/Cargo.toml
+++ b/examples/nrf/Cargo.toml
@@ -25,7 +25,7 @@ defmt = "0.2.0"
25defmt-rtt = "0.2.0" 25defmt-rtt = "0.2.0"
26 26
27cortex-m = { version = "0.7.1", features = ["inline-asm"] } 27cortex-m = { version = "0.7.1", features = ["inline-asm"] }
28cortex-m-rt = "0.6.13" 28cortex-m-rt = "0.7.0"
29embedded-hal = { version = "0.2.4" } 29embedded-hal = { version = "0.2.4" }
30panic-probe = { version = "0.2.0", features = ["print-defmt"] } 30panic-probe = { version = "0.2.0", features = ["print-defmt"] }
31futures = { version = "0.3.8", default-features = false, features = ["async-await"] } 31futures = { version = "0.3.8", default-features = false, features = ["async-await"] }