aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDániel Buga <[email protected]>2025-01-05 21:30:29 +0100
committerDániel Buga <[email protected]>2025-01-05 21:35:05 +0100
commit89b97c2d7c213a36c97606996e16ef115f836ea9 (patch)
treeac97252f5cf09328865a91cddf265a9416873af6
parent09588321e52746d21f27ededfede5c4c362975d9 (diff)
Fix search-and-replacability
-rw-r--r--embassy-nxp/Cargo.toml2
-rw-r--r--embassy-rp/Cargo.toml10
-rw-r--r--embassy-stm32/Cargo.toml8
-rw-r--r--embassy-usb-synopsys-otg/Cargo.toml2
-rw-r--r--examples/lpc55s69/Cargo.toml2
-rw-r--r--examples/stm32f7/Cargo.toml2
-rw-r--r--tests/stm32/Cargo.toml4
7 files changed, 15 insertions, 15 deletions
diff --git a/embassy-nxp/Cargo.toml b/embassy-nxp/Cargo.toml
index b0f73b63c..fb0a0fed2 100644
--- a/embassy-nxp/Cargo.toml
+++ b/embassy-nxp/Cargo.toml
@@ -7,7 +7,7 @@ edition = "2021"
7cortex-m = "0.7.7" 7cortex-m = "0.7.7"
8cortex-m-rt = "0.7.0" 8cortex-m-rt = "0.7.0"
9critical-section = "1.1.2" 9critical-section = "1.1.2"
10embassy-hal-internal = {version = "0.2.0", path = "../embassy-hal-internal", features = ["cortex-m", "prio-bits-2"] } 10embassy-hal-internal = { version = "0.2.0", path = "../embassy-hal-internal", features = ["cortex-m", "prio-bits-2"] }
11embassy-sync = { version = "0.6.1", path = "../embassy-sync" } 11embassy-sync = { version = "0.6.1", path = "../embassy-sync" }
12lpc55-pac = "0.5.0" 12lpc55-pac = "0.5.0"
13defmt = "0.3.8" 13defmt = "0.3.8"
diff --git a/embassy-rp/Cargo.toml b/embassy-rp/Cargo.toml
index 37d9d916f..4b3a67ff4 100644
--- a/embassy-rp/Cargo.toml
+++ b/embassy-rp/Cargo.toml
@@ -113,9 +113,9 @@ embassy-time-driver = { version = "0.2", path = "../embassy-time-driver", option
113embassy-time-queue-utils = { version = "0.1", path = "../embassy-time-queue-utils", optional = true } 113embassy-time-queue-utils = { version = "0.1", path = "../embassy-time-queue-utils", optional = true }
114embassy-time = { version = "0.4.0", path = "../embassy-time" } 114embassy-time = { version = "0.4.0", path = "../embassy-time" }
115embassy-futures = { version = "0.1.0", path = "../embassy-futures" } 115embassy-futures = { version = "0.1.0", path = "../embassy-futures" }
116embassy-hal-internal = {version = "0.2.0", path = "../embassy-hal-internal", features = ["cortex-m", "prio-bits-2"] } 116embassy-hal-internal = { version = "0.2.0", path = "../embassy-hal-internal", features = ["cortex-m", "prio-bits-2"] }
117embassy-embedded-hal = {version = "0.2.0", path = "../embassy-embedded-hal" } 117embassy-embedded-hal = { version = "0.3.0", path = "../embassy-embedded-hal" }
118embassy-usb-driver = {version = "0.1.0", path = "../embassy-usb-driver" } 118embassy-usb-driver = { version = "0.1.0", path = "../embassy-usb-driver" }
119atomic-polyfill = "1.0.1" 119atomic-polyfill = "1.0.1"
120defmt = { version = "0.3", optional = true } 120defmt = { version = "0.3", optional = true }
121log = { version = "0.4.14", optional = true } 121log = { version = "0.4.14", optional = true }
@@ -139,8 +139,8 @@ embedded-hal-1 = { package = "embedded-hal", version = "1.0" }
139embedded-hal-async = { version = "1.0" } 139embedded-hal-async = { version = "1.0" }
140embedded-hal-nb = { version = "1.0" } 140embedded-hal-nb = { version = "1.0" }
141 141
142pio-proc = {version= "0.2" } 142pio-proc = { version= "0.2" }
143pio = {version= "0.2.1" } 143pio = { version= "0.2.1" }
144rp2040-boot2 = "0.3" 144rp2040-boot2 = "0.3"
145document-features = "0.2.10" 145document-features = "0.2.10"
146sha2-const-stable = "0.1" 146sha2-const-stable = "0.1"
diff --git a/embassy-stm32/Cargo.toml b/embassy-stm32/Cargo.toml
index 229f902fa..4bd9e112d 100644
--- a/embassy-stm32/Cargo.toml
+++ b/embassy-stm32/Cargo.toml
@@ -47,11 +47,11 @@ embassy-time = { version = "0.4.0", path = "../embassy-time", optional = true }
47embassy-time-driver = { version = "0.2", path = "../embassy-time-driver", optional = true } 47embassy-time-driver = { version = "0.2", path = "../embassy-time-driver", optional = true }
48embassy-time-queue-utils = { version = "0.1", path = "../embassy-time-queue-utils", optional = true } 48embassy-time-queue-utils = { version = "0.1", path = "../embassy-time-queue-utils", optional = true }
49embassy-futures = { version = "0.1.0", path = "../embassy-futures" } 49embassy-futures = { version = "0.1.0", path = "../embassy-futures" }
50embassy-hal-internal = {version = "0.2.0", path = "../embassy-hal-internal", features = ["cortex-m", "prio-bits-4"] } 50embassy-hal-internal = { version = "0.2.0", path = "../embassy-hal-internal", features = ["cortex-m", "prio-bits-4"] }
51embassy-embedded-hal = {version = "0.2.0", path = "../embassy-embedded-hal", default-features = false } 51embassy-embedded-hal = { version = "0.3.0", path = "../embassy-embedded-hal", default-features = false }
52embassy-net-driver = { version = "0.2.0", path = "../embassy-net-driver" } 52embassy-net-driver = { version = "0.2.0", path = "../embassy-net-driver" }
53embassy-usb-driver = {version = "0.1.0", path = "../embassy-usb-driver" } 53embassy-usb-driver = { version = "0.1.0", path = "../embassy-usb-driver" }
54embassy-usb-synopsys-otg = {version = "0.2.0", path = "../embassy-usb-synopsys-otg" } 54embassy-usb-synopsys-otg = { version = "0.2.0", path = "../embassy-usb-synopsys-otg" }
55embassy-executor = { version = "0.7.0", path = "../embassy-executor", optional = true } 55embassy-executor = { version = "0.7.0", path = "../embassy-executor", optional = true }
56 56
57embedded-hal-02 = { package = "embedded-hal", version = "0.2.6", features = ["unproven"] } 57embedded-hal-02 = { package = "embedded-hal", version = "0.2.6", features = ["unproven"] }
diff --git a/embassy-usb-synopsys-otg/Cargo.toml b/embassy-usb-synopsys-otg/Cargo.toml
index 7a9143ef9..487cc556b 100644
--- a/embassy-usb-synopsys-otg/Cargo.toml
+++ b/embassy-usb-synopsys-otg/Cargo.toml
@@ -19,7 +19,7 @@ target = "thumbv7em-none-eabi"
19critical-section = "1.1" 19critical-section = "1.1"
20 20
21embassy-sync = { version = "0.6.1", path = "../embassy-sync" } 21embassy-sync = { version = "0.6.1", path = "../embassy-sync" }
22embassy-usb-driver = {version = "0.1.0", path = "../embassy-usb-driver" } 22embassy-usb-driver = { version = "0.1.0", path = "../embassy-usb-driver" }
23 23
24defmt = { version = "0.3", optional = true } 24defmt = { version = "0.3", optional = true }
25log = { version = "0.4.14", optional = true } 25log = { version = "0.4.14", optional = true }
diff --git a/examples/lpc55s69/Cargo.toml b/examples/lpc55s69/Cargo.toml
index 1c8d5f456..c8efc2e72 100644
--- a/examples/lpc55s69/Cargo.toml
+++ b/examples/lpc55s69/Cargo.toml
@@ -12,7 +12,7 @@ embassy-sync = { version = "0.6.1", path = "../../embassy-sync", features = ["de
12embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["defmt"] } 12embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["defmt"] }
13panic-halt = "0.2.0" 13panic-halt = "0.2.0"
14cortex-m = { version = "0.7.6", features = ["inline-asm", "critical-section-single-core"] } 14cortex-m = { version = "0.7.6", features = ["inline-asm", "critical-section-single-core"] }
15cortex-m-rt = {version = "0.7.0"} 15cortex-m-rt = { version = "0.7.0"}
16defmt = "0.3" 16defmt = "0.3"
17defmt-rtt = "0.4" 17defmt-rtt = "0.4"
18panic-probe = { version = "0.3.2", features = ["print-defmt"] } 18panic-probe = { version = "0.3.2", features = ["print-defmt"] }
diff --git a/examples/stm32f7/Cargo.toml b/examples/stm32f7/Cargo.toml
index 96eb46c5c..f9f2ae9a4 100644
--- a/examples/stm32f7/Cargo.toml
+++ b/examples/stm32f7/Cargo.toml
@@ -30,7 +30,7 @@ embedded-storage = "0.3.1"
30static_cell = "2" 30static_cell = "2"
31sha2 = { version = "0.10.8", default-features = false } 31sha2 = { version = "0.10.8", default-features = false }
32hmac = "0.12.1" 32hmac = "0.12.1"
33aes-gcm = {version = "0.10.3", default-features = false, features = ["aes", "heapless"] } 33aes-gcm = { version = "0.10.3", default-features = false, features = ["aes", "heapless"] }
34 34
35[profile.release] 35[profile.release]
36debug = 2 36debug = 2
diff --git a/tests/stm32/Cargo.toml b/tests/stm32/Cargo.toml
index c48b23f1e..5537969a4 100644
--- a/tests/stm32/Cargo.toml
+++ b/tests/stm32/Cargo.toml
@@ -87,8 +87,8 @@ portable-atomic = { version = "1.5", features = [] }
87chrono = { version = "^0.4", default-features = false, optional = true} 87chrono = { version = "^0.4", default-features = false, optional = true}
88sha2 = { version = "0.10.8", default-features = false } 88sha2 = { version = "0.10.8", default-features = false }
89hmac = "0.12.1" 89hmac = "0.12.1"
90aes-gcm = {version = "0.10.3", default-features = false, features = ["aes", "heapless"] } 90aes-gcm = { version = "0.10.3", default-features = false, features = ["aes", "heapless"] }
91num-traits = {version="0.2", default-features = false,features = ["libm"], optional = true} 91num-traits = { version="0.2", default-features = false,features = ["libm"], optional = true}
92 92
93# BEGIN TESTS 93# BEGIN TESTS
94# Generated by gen_test.py. DO NOT EDIT. 94# Generated by gen_test.py. DO NOT EDIT.