diff options
| author | Dario Nieuwenhuis <[email protected]> | 2023-12-04 13:47:21 +0100 |
|---|---|---|
| committer | Dario Nieuwenhuis <[email protected]> | 2023-12-04 13:48:36 +0100 |
| commit | 03325ea81be84a0472fe66d743afb064eed6b904 (patch) | |
| tree | 78d68263deb961803db489b9aeda279ee81650d0 | |
| parent | 52fabbfb46bf79abad076ebfae561a1167e5a698 (diff) | |
update embedded-storage{,-async}, remove patch.
25 files changed, 30 insertions, 33 deletions
diff --git a/.cargo/config.toml b/.cargo/config.toml deleted file mode 100644 index c1ab9a9b9..000000000 --- a/.cargo/config.toml +++ /dev/null | |||
| @@ -1,3 +0,0 @@ | |||
| 1 | [patch.crates-io] | ||
| 2 | embedded-storage = { git = "https://github.com/rust-embedded-community/embedded-storage", rev = "634302740f8d676538c3890748e7d7dfe372a040" } | ||
| 3 | embedded-storage-async = { git = "https://github.com/rust-embedded-community/embedded-storage", rev = "634302740f8d676538c3890748e7d7dfe372a040" } \ No newline at end of file | ||
diff --git a/embassy-boot/boot/Cargo.toml b/embassy-boot/boot/Cargo.toml index ee69bc268..ee1dacc22 100644 --- a/embassy-boot/boot/Cargo.toml +++ b/embassy-boot/boot/Cargo.toml | |||
| @@ -29,8 +29,8 @@ log = { version = "0.4", optional = true } | |||
| 29 | ed25519-dalek = { version = "1.0.1", default_features = false, features = ["u32_backend"], optional = true } | 29 | ed25519-dalek = { version = "1.0.1", default_features = false, features = ["u32_backend"], optional = true } |
| 30 | embassy-embedded-hal = { version = "0.1.0", path = "../../embassy-embedded-hal" } | 30 | embassy-embedded-hal = { version = "0.1.0", path = "../../embassy-embedded-hal" } |
| 31 | embassy-sync = { version = "0.4.0", path = "../../embassy-sync" } | 31 | embassy-sync = { version = "0.4.0", path = "../../embassy-sync" } |
| 32 | embedded-storage = "0.3.0" | 32 | embedded-storage = "0.3.1" |
| 33 | embedded-storage-async = { version = "0.4.0" } | 33 | embedded-storage-async = { version = "0.4.1" } |
| 34 | salty = { git = "https://github.com/ycrypto/salty.git", rev = "a9f17911a5024698406b75c0fac56ab5ccf6a8c7", optional = true } | 34 | salty = { git = "https://github.com/ycrypto/salty.git", rev = "a9f17911a5024698406b75c0fac56ab5ccf6a8c7", optional = true } |
| 35 | signature = { version = "1.6.4", default-features = false } | 35 | signature = { version = "1.6.4", default-features = false } |
| 36 | 36 | ||
diff --git a/embassy-boot/nrf/Cargo.toml b/embassy-boot/nrf/Cargo.toml index b16506315..e4ec175a7 100644 --- a/embassy-boot/nrf/Cargo.toml +++ b/embassy-boot/nrf/Cargo.toml | |||
| @@ -21,8 +21,8 @@ embassy-nrf = { path = "../../embassy-nrf" } | |||
| 21 | embassy-boot = { path = "../boot", default-features = false } | 21 | embassy-boot = { path = "../boot", default-features = false } |
| 22 | cortex-m = { version = "0.7.6" } | 22 | cortex-m = { version = "0.7.6" } |
| 23 | cortex-m-rt = { version = "0.7" } | 23 | cortex-m-rt = { version = "0.7" } |
| 24 | embedded-storage = "0.3.0" | 24 | embedded-storage = "0.3.1" |
| 25 | embedded-storage-async = { version = "0.4.0" } | 25 | embedded-storage-async = { version = "0.4.1" } |
| 26 | cfg-if = "1.0.0" | 26 | cfg-if = "1.0.0" |
| 27 | 27 | ||
| 28 | nrf-softdevice-mbr = { version = "0.1.0", git = "https://github.com/embassy-rs/nrf-softdevice.git", branch = "master", optional = true } | 28 | nrf-softdevice-mbr = { version = "0.1.0", git = "https://github.com/embassy-rs/nrf-softdevice.git", branch = "master", optional = true } |
diff --git a/embassy-boot/rp/Cargo.toml b/embassy-boot/rp/Cargo.toml index 7329ea574..ad3854733 100644 --- a/embassy-boot/rp/Cargo.toml +++ b/embassy-boot/rp/Cargo.toml | |||
| @@ -24,8 +24,8 @@ embassy-time = { path = "../../embassy-time" } | |||
| 24 | 24 | ||
| 25 | cortex-m = { version = "0.7.6" } | 25 | cortex-m = { version = "0.7.6" } |
| 26 | cortex-m-rt = { version = "0.7" } | 26 | cortex-m-rt = { version = "0.7" } |
| 27 | embedded-storage = "0.3.0" | 27 | embedded-storage = "0.3.1" |
| 28 | embedded-storage-async = { version = "0.4.0" } | 28 | embedded-storage-async = { version = "0.4.1" } |
| 29 | cfg-if = "1.0.0" | 29 | cfg-if = "1.0.0" |
| 30 | 30 | ||
| 31 | [features] | 31 | [features] |
diff --git a/embassy-boot/stm32/Cargo.toml b/embassy-boot/stm32/Cargo.toml index a9f0e4f0e..7dedf8c43 100644 --- a/embassy-boot/stm32/Cargo.toml +++ b/embassy-boot/stm32/Cargo.toml | |||
| @@ -23,8 +23,8 @@ embassy-stm32 = { path = "../../embassy-stm32", default-features = false } | |||
| 23 | embassy-boot = { path = "../boot", default-features = false } | 23 | embassy-boot = { path = "../boot", default-features = false } |
| 24 | cortex-m = { version = "0.7.6" } | 24 | cortex-m = { version = "0.7.6" } |
| 25 | cortex-m-rt = { version = "0.7" } | 25 | cortex-m-rt = { version = "0.7" } |
| 26 | embedded-storage = "0.3.0" | 26 | embedded-storage = "0.3.1" |
| 27 | embedded-storage-async = { version = "0.4.0" } | 27 | embedded-storage-async = { version = "0.4.1" } |
| 28 | cfg-if = "1.0.0" | 28 | cfg-if = "1.0.0" |
| 29 | 29 | ||
| 30 | [features] | 30 | [features] |
diff --git a/embassy-embedded-hal/Cargo.toml b/embassy-embedded-hal/Cargo.toml index db4dc9587..7cd796e80 100644 --- a/embassy-embedded-hal/Cargo.toml +++ b/embassy-embedded-hal/Cargo.toml | |||
| @@ -25,8 +25,8 @@ embedded-hal-02 = { package = "embedded-hal", version = "0.2.6", features = [ | |||
| 25 | ] } | 25 | ] } |
| 26 | embedded-hal-1 = { package = "embedded-hal", version = "=1.0.0-rc.2" } | 26 | embedded-hal-1 = { package = "embedded-hal", version = "=1.0.0-rc.2" } |
| 27 | embedded-hal-async = { version = "=1.0.0-rc.2" } | 27 | embedded-hal-async = { version = "=1.0.0-rc.2" } |
| 28 | embedded-storage = "0.3.0" | 28 | embedded-storage = "0.3.1" |
| 29 | embedded-storage-async = { version = "0.4.0" } | 29 | embedded-storage-async = { version = "0.4.1" } |
| 30 | nb = "1.0.0" | 30 | nb = "1.0.0" |
| 31 | 31 | ||
| 32 | defmt = { version = "0.3", optional = true } | 32 | defmt = { version = "0.3", optional = true } |
diff --git a/embassy-nrf/Cargo.toml b/embassy-nrf/Cargo.toml index bde15267b..2da81a0ff 100644 --- a/embassy-nrf/Cargo.toml +++ b/embassy-nrf/Cargo.toml | |||
| @@ -106,7 +106,7 @@ cortex-m = "0.7.6" | |||
| 106 | critical-section = "1.1" | 106 | critical-section = "1.1" |
| 107 | rand_core = "0.6.3" | 107 | rand_core = "0.6.3" |
| 108 | fixed = "1.10.0" | 108 | fixed = "1.10.0" |
| 109 | embedded-storage = "0.3.0" | 109 | embedded-storage = "0.3.1" |
| 110 | embedded-storage-async = "0.4.0" | 110 | embedded-storage-async = "0.4.0" |
| 111 | cfg-if = "1.0.0" | 111 | cfg-if = "1.0.0" |
| 112 | 112 | ||
diff --git a/embassy-rp/Cargo.toml b/embassy-rp/Cargo.toml index 1a2945a7e..3c6549753 100644 --- a/embassy-rp/Cargo.toml +++ b/embassy-rp/Cargo.toml | |||
| @@ -71,7 +71,7 @@ chrono = { version = "0.4", default-features = false, optional = true } | |||
| 71 | embedded-io = { version = "0.6.0" } | 71 | embedded-io = { version = "0.6.0" } |
| 72 | embedded-io-async = { version = "0.6.1" } | 72 | embedded-io-async = { version = "0.6.1" } |
| 73 | embedded-storage = { version = "0.3" } | 73 | embedded-storage = { version = "0.3" } |
| 74 | embedded-storage-async = { version = "0.4.0" } | 74 | embedded-storage-async = { version = "0.4.1" } |
| 75 | rand_core = "0.6.4" | 75 | rand_core = "0.6.4" |
| 76 | fixed = "1.23.1" | 76 | fixed = "1.23.1" |
| 77 | 77 | ||
diff --git a/embassy-stm32/Cargo.toml b/embassy-stm32/Cargo.toml index 0ef603059..dc9b331cf 100644 --- a/embassy-stm32/Cargo.toml +++ b/embassy-stm32/Cargo.toml | |||
| @@ -46,8 +46,8 @@ embedded-hal-1 = { package = "embedded-hal", version = "=1.0.0-rc.2" } | |||
| 46 | embedded-hal-async = { version = "=1.0.0-rc.2" } | 46 | embedded-hal-async = { version = "=1.0.0-rc.2" } |
| 47 | embedded-hal-nb = { version = "=1.0.0-rc.2" } | 47 | embedded-hal-nb = { version = "=1.0.0-rc.2" } |
| 48 | 48 | ||
| 49 | embedded-storage = "0.3.0" | 49 | embedded-storage = "0.3.1" |
| 50 | embedded-storage-async = { version = "0.4.0" } | 50 | embedded-storage-async = { version = "0.4.1" } |
| 51 | 51 | ||
| 52 | defmt = { version = "0.3", optional = true } | 52 | defmt = { version = "0.3", optional = true } |
| 53 | log = { version = "0.4.14", optional = true } | 53 | log = { version = "0.4.14", optional = true } |
diff --git a/examples/boot/application/rp/Cargo.toml b/examples/boot/application/rp/Cargo.toml index 3008552e3..54ec53b34 100644 --- a/examples/boot/application/rp/Cargo.toml +++ b/examples/boot/application/rp/Cargo.toml | |||
| @@ -20,7 +20,7 @@ embedded-hal = { version = "0.2.6" } | |||
| 20 | 20 | ||
| 21 | cortex-m = { version = "0.7.6", features = ["inline-asm", "critical-section-single-core"] } | 21 | cortex-m = { version = "0.7.6", features = ["inline-asm", "critical-section-single-core"] } |
| 22 | cortex-m-rt = "0.7.0" | 22 | cortex-m-rt = "0.7.0" |
| 23 | embedded-storage = "0.3.0" | 23 | embedded-storage = "0.3.1" |
| 24 | 24 | ||
| 25 | [features] | 25 | [features] |
| 26 | default = ["panic-reset"] | 26 | default = ["panic-reset"] |
diff --git a/examples/boot/application/stm32f7/Cargo.toml b/examples/boot/application/stm32f7/Cargo.toml index a3d345b69..57be97afe 100644 --- a/examples/boot/application/stm32f7/Cargo.toml +++ b/examples/boot/application/stm32f7/Cargo.toml | |||
| @@ -16,7 +16,7 @@ defmt = { version = "0.3", optional = true } | |||
| 16 | defmt-rtt = { version = "0.4", optional = true } | 16 | defmt-rtt = { version = "0.4", optional = true } |
| 17 | panic-reset = { version = "0.1.1" } | 17 | panic-reset = { version = "0.1.1" } |
| 18 | embedded-hal = { version = "0.2.6" } | 18 | embedded-hal = { version = "0.2.6" } |
| 19 | embedded-storage = "0.3.0" | 19 | embedded-storage = "0.3.1" |
| 20 | 20 | ||
| 21 | cortex-m = { version = "0.7.6", features = ["inline-asm", "critical-section-single-core"] } | 21 | cortex-m = { version = "0.7.6", features = ["inline-asm", "critical-section-single-core"] } |
| 22 | cortex-m-rt = "0.7.0" | 22 | cortex-m-rt = "0.7.0" |
diff --git a/examples/boot/application/stm32h7/Cargo.toml b/examples/boot/application/stm32h7/Cargo.toml index 56b95993c..057060f85 100644 --- a/examples/boot/application/stm32h7/Cargo.toml +++ b/examples/boot/application/stm32h7/Cargo.toml | |||
| @@ -16,7 +16,7 @@ defmt = { version = "0.3", optional = true } | |||
| 16 | defmt-rtt = { version = "0.4", optional = true } | 16 | defmt-rtt = { version = "0.4", optional = true } |
| 17 | panic-reset = { version = "0.1.1" } | 17 | panic-reset = { version = "0.1.1" } |
| 18 | embedded-hal = { version = "0.2.6" } | 18 | embedded-hal = { version = "0.2.6" } |
| 19 | embedded-storage = "0.3.0" | 19 | embedded-storage = "0.3.1" |
| 20 | 20 | ||
| 21 | cortex-m = { version = "0.7.6", features = ["inline-asm", "critical-section-single-core"] } | 21 | cortex-m = { version = "0.7.6", features = ["inline-asm", "critical-section-single-core"] } |
| 22 | cortex-m-rt = "0.7.0" | 22 | cortex-m-rt = "0.7.0" |
diff --git a/examples/boot/bootloader/rp/Cargo.toml b/examples/boot/bootloader/rp/Cargo.toml index 14297c7e4..18693f063 100644 --- a/examples/boot/bootloader/rp/Cargo.toml +++ b/examples/boot/bootloader/rp/Cargo.toml | |||
| @@ -16,7 +16,7 @@ embassy-time = { path = "../../../../embassy-time", features = [] } | |||
| 16 | 16 | ||
| 17 | cortex-m = { version = "0.7.6", features = ["inline-asm", "critical-section-single-core"] } | 17 | cortex-m = { version = "0.7.6", features = ["inline-asm", "critical-section-single-core"] } |
| 18 | cortex-m-rt = { version = "0.7" } | 18 | cortex-m-rt = { version = "0.7" } |
| 19 | embedded-storage = "0.3.0" | 19 | embedded-storage = "0.3.1" |
| 20 | embedded-storage-async = "0.4.0" | 20 | embedded-storage-async = "0.4.0" |
| 21 | cfg-if = "1.0.0" | 21 | cfg-if = "1.0.0" |
| 22 | 22 | ||
diff --git a/examples/boot/bootloader/stm32/Cargo.toml b/examples/boot/bootloader/stm32/Cargo.toml index fb38c3a66..aa2b9fbe2 100644 --- a/examples/boot/bootloader/stm32/Cargo.toml +++ b/examples/boot/bootloader/stm32/Cargo.toml | |||
| @@ -14,7 +14,7 @@ embassy-boot-stm32 = { path = "../../../../embassy-boot/stm32" } | |||
| 14 | cortex-m = { version = "0.7.6", features = ["inline-asm", "critical-section-single-core"] } | 14 | cortex-m = { version = "0.7.6", features = ["inline-asm", "critical-section-single-core"] } |
| 15 | embassy-sync = { version = "0.4.0", path = "../../../../embassy-sync" } | 15 | embassy-sync = { version = "0.4.0", path = "../../../../embassy-sync" } |
| 16 | cortex-m-rt = { version = "0.7" } | 16 | cortex-m-rt = { version = "0.7" } |
| 17 | embedded-storage = "0.3.0" | 17 | embedded-storage = "0.3.1" |
| 18 | embedded-storage-async = "0.4.0" | 18 | embedded-storage-async = "0.4.0" |
| 19 | cfg-if = "1.0.0" | 19 | cfg-if = "1.0.0" |
| 20 | 20 | ||
diff --git a/examples/nrf52840/Cargo.toml b/examples/nrf52840/Cargo.toml index e2e79eaea..be5219225 100644 --- a/examples/nrf52840/Cargo.toml +++ b/examples/nrf52840/Cargo.toml | |||
| @@ -33,7 +33,7 @@ cortex-m-rt = "0.7.0" | |||
| 33 | panic-probe = { version = "0.3", features = ["print-defmt"] } | 33 | panic-probe = { version = "0.3", features = ["print-defmt"] } |
| 34 | futures = { version = "0.3.17", default-features = false, features = ["async-await"] } | 34 | futures = { version = "0.3.17", default-features = false, features = ["async-await"] } |
| 35 | rand = { version = "0.8.4", default-features = false } | 35 | rand = { version = "0.8.4", default-features = false } |
| 36 | embedded-storage = "0.3.0" | 36 | embedded-storage = "0.3.1" |
| 37 | usbd-hid = "0.6.0" | 37 | usbd-hid = "0.6.0" |
| 38 | serde = { version = "1.0.136", default-features = false } | 38 | serde = { version = "1.0.136", default-features = false } |
| 39 | embedded-hal = { version = "1.0.0-rc.2" } | 39 | embedded-hal = { version = "1.0.0-rc.2" } |
diff --git a/examples/nrf5340/Cargo.toml b/examples/nrf5340/Cargo.toml index b4d71c751..d14678aba 100644 --- a/examples/nrf5340/Cargo.toml +++ b/examples/nrf5340/Cargo.toml | |||
| @@ -23,7 +23,7 @@ cortex-m-rt = "0.7.0" | |||
| 23 | panic-probe = { version = "0.3", features = ["print-defmt"] } | 23 | panic-probe = { version = "0.3", features = ["print-defmt"] } |
| 24 | futures = { version = "0.3.17", default-features = false, features = ["async-await"] } | 24 | futures = { version = "0.3.17", default-features = false, features = ["async-await"] } |
| 25 | rand = { version = "0.8.4", default-features = false } | 25 | rand = { version = "0.8.4", default-features = false } |
| 26 | embedded-storage = "0.3.0" | 26 | embedded-storage = "0.3.1" |
| 27 | usbd-hid = "0.6.0" | 27 | usbd-hid = "0.6.0" |
| 28 | serde = { version = "1.0.136", default-features = false } | 28 | serde = { version = "1.0.136", default-features = false } |
| 29 | 29 | ||
diff --git a/examples/stm32f3/Cargo.toml b/examples/stm32f3/Cargo.toml index ad6b8ef43..fe852387e 100644 --- a/examples/stm32f3/Cargo.toml +++ b/examples/stm32f3/Cargo.toml | |||
| @@ -23,7 +23,7 @@ panic-probe = { version = "0.3", features = ["print-defmt"] } | |||
| 23 | futures = { version = "0.3.17", default-features = false, features = ["async-await"] } | 23 | futures = { version = "0.3.17", default-features = false, features = ["async-await"] } |
| 24 | heapless = { version = "0.8", default-features = false } | 24 | heapless = { version = "0.8", default-features = false } |
| 25 | nb = "1.0.0" | 25 | nb = "1.0.0" |
| 26 | embedded-storage = "0.3.0" | 26 | embedded-storage = "0.3.1" |
| 27 | static_cell = { version = "2", features = ["nightly"]} | 27 | static_cell = { version = "2", features = ["nightly"]} |
| 28 | 28 | ||
| 29 | [profile.release] | 29 | [profile.release] |
diff --git a/examples/stm32f334/Cargo.toml b/examples/stm32f334/Cargo.toml index 5cdcabfbf..ad9060a2b 100644 --- a/examples/stm32f334/Cargo.toml +++ b/examples/stm32f334/Cargo.toml | |||
| @@ -22,5 +22,5 @@ panic-probe = { version = "0.3", features = ["print-defmt"] } | |||
| 22 | futures = { version = "0.3.17", default-features = false, features = ["async-await"] } | 22 | futures = { version = "0.3.17", default-features = false, features = ["async-await"] } |
| 23 | heapless = { version = "0.8", default-features = false } | 23 | heapless = { version = "0.8", default-features = false } |
| 24 | nb = "1.0.0" | 24 | nb = "1.0.0" |
| 25 | embedded-storage = "0.3.0" | 25 | embedded-storage = "0.3.1" |
| 26 | static_cell = { version = "2", features = ["nightly"]} | 26 | static_cell = { version = "2", features = ["nightly"]} |
diff --git a/examples/stm32f4/Cargo.toml b/examples/stm32f4/Cargo.toml index 1e85371e3..947805c44 100644 --- a/examples/stm32f4/Cargo.toml +++ b/examples/stm32f4/Cargo.toml | |||
| @@ -25,7 +25,7 @@ panic-probe = { version = "0.3", features = ["print-defmt"] } | |||
| 25 | futures = { version = "0.3.17", default-features = false, features = ["async-await"] } | 25 | futures = { version = "0.3.17", default-features = false, features = ["async-await"] } |
| 26 | heapless = { version = "0.8", default-features = false } | 26 | heapless = { version = "0.8", default-features = false } |
| 27 | nb = "1.0.0" | 27 | nb = "1.0.0" |
| 28 | embedded-storage = "0.3.0" | 28 | embedded-storage = "0.3.1" |
| 29 | micromath = "2.0.0" | 29 | micromath = "2.0.0" |
| 30 | static_cell = { version = "2", features = ["nightly"]} | 30 | static_cell = { version = "2", features = ["nightly"]} |
| 31 | chrono = { version = "^0.4", default-features = false} | 31 | chrono = { version = "^0.4", default-features = false} |
diff --git a/examples/stm32f7/Cargo.toml b/examples/stm32f7/Cargo.toml index e029da2c5..2e1f27df5 100644 --- a/examples/stm32f7/Cargo.toml +++ b/examples/stm32f7/Cargo.toml | |||
| @@ -26,7 +26,7 @@ heapless = { version = "0.8", default-features = false } | |||
| 26 | nb = "1.0.0" | 26 | nb = "1.0.0" |
| 27 | rand_core = "0.6.3" | 27 | rand_core = "0.6.3" |
| 28 | critical-section = "1.1" | 28 | critical-section = "1.1" |
| 29 | embedded-storage = "0.3.0" | 29 | embedded-storage = "0.3.1" |
| 30 | static_cell = { version = "2", features = ["nightly"]} | 30 | static_cell = { version = "2", features = ["nightly"]} |
| 31 | 31 | ||
| 32 | [profile.release] | 32 | [profile.release] |
diff --git a/examples/stm32h5/Cargo.toml b/examples/stm32h5/Cargo.toml index d389463ff..d15ecee10 100644 --- a/examples/stm32h5/Cargo.toml +++ b/examples/stm32h5/Cargo.toml | |||
| @@ -30,7 +30,7 @@ rand_core = "0.6.3" | |||
| 30 | critical-section = "1.1" | 30 | critical-section = "1.1" |
| 31 | micromath = "2.0.0" | 31 | micromath = "2.0.0" |
| 32 | stm32-fmc = "0.3.0" | 32 | stm32-fmc = "0.3.0" |
| 33 | embedded-storage = "0.3.0" | 33 | embedded-storage = "0.3.1" |
| 34 | static_cell = { version = "2", features = ["nightly"]} | 34 | static_cell = { version = "2", features = ["nightly"]} |
| 35 | 35 | ||
| 36 | # cargo build/run | 36 | # cargo build/run |
diff --git a/examples/stm32h7/Cargo.toml b/examples/stm32h7/Cargo.toml index 85396d8cd..ea59b5c0c 100644 --- a/examples/stm32h7/Cargo.toml +++ b/examples/stm32h7/Cargo.toml | |||
| @@ -30,7 +30,7 @@ rand_core = "0.6.3" | |||
| 30 | critical-section = "1.1" | 30 | critical-section = "1.1" |
| 31 | micromath = "2.0.0" | 31 | micromath = "2.0.0" |
| 32 | stm32-fmc = "0.3.0" | 32 | stm32-fmc = "0.3.0" |
| 33 | embedded-storage = "0.3.0" | 33 | embedded-storage = "0.3.1" |
| 34 | static_cell = { version = "2", features = ["nightly"]} | 34 | static_cell = { version = "2", features = ["nightly"]} |
| 35 | chrono = { version = "^0.4", default-features = false } | 35 | chrono = { version = "^0.4", default-features = false } |
| 36 | 36 | ||
diff --git a/examples/stm32l0/Cargo.toml b/examples/stm32l0/Cargo.toml index 8ce1e2357..9fad48df5 100644 --- a/examples/stm32l0/Cargo.toml +++ b/examples/stm32l0/Cargo.toml | |||
| @@ -18,7 +18,7 @@ embassy-time = { version = "0.1.5", path = "../../embassy-time", features = ["de | |||
| 18 | defmt = "0.3" | 18 | defmt = "0.3" |
| 19 | defmt-rtt = "0.4" | 19 | defmt-rtt = "0.4" |
| 20 | 20 | ||
| 21 | embedded-storage = "0.3.0" | 21 | embedded-storage = "0.3.1" |
| 22 | embedded-io = { version = "0.6.0" } | 22 | embedded-io = { version = "0.6.0" } |
| 23 | embedded-io-async = { version = "0.6.1" } | 23 | embedded-io-async = { version = "0.6.1" } |
| 24 | 24 | ||
diff --git a/examples/stm32l1/Cargo.toml b/examples/stm32l1/Cargo.toml index 94fe339ab..907b8ea6b 100644 --- a/examples/stm32l1/Cargo.toml +++ b/examples/stm32l1/Cargo.toml | |||
| @@ -19,7 +19,7 @@ embedded-hal = "0.2.6" | |||
| 19 | panic-probe = { version = "0.3", features = ["print-defmt"] } | 19 | panic-probe = { version = "0.3", features = ["print-defmt"] } |
| 20 | futures = { version = "0.3.17", default-features = false, features = ["async-await"] } | 20 | futures = { version = "0.3.17", default-features = false, features = ["async-await"] } |
| 21 | heapless = { version = "0.8", default-features = false } | 21 | heapless = { version = "0.8", default-features = false } |
| 22 | embedded-storage = "0.3.0" | 22 | embedded-storage = "0.3.1" |
| 23 | 23 | ||
| 24 | [profile.release] | 24 | [profile.release] |
| 25 | debug = 2 | 25 | debug = 2 |
diff --git a/examples/stm32wl/Cargo.toml b/examples/stm32wl/Cargo.toml index 588721351..13a16307b 100644 --- a/examples/stm32wl/Cargo.toml +++ b/examples/stm32wl/Cargo.toml | |||
| @@ -18,7 +18,7 @@ defmt-rtt = "0.4" | |||
| 18 | cortex-m = { version = "0.7.6", features = ["inline-asm", "critical-section-single-core"] } | 18 | cortex-m = { version = "0.7.6", features = ["inline-asm", "critical-section-single-core"] } |
| 19 | cortex-m-rt = "0.7.0" | 19 | cortex-m-rt = "0.7.0" |
| 20 | embedded-hal = "0.2.6" | 20 | embedded-hal = "0.2.6" |
| 21 | embedded-storage = "0.3.0" | 21 | embedded-storage = "0.3.1" |
| 22 | panic-probe = { version = "0.3", features = ["print-defmt"] } | 22 | panic-probe = { version = "0.3", features = ["print-defmt"] } |
| 23 | futures = { version = "0.3.17", default-features = false, features = ["async-await"] } | 23 | futures = { version = "0.3.17", default-features = false, features = ["async-await"] } |
| 24 | heapless = { version = "0.8", default-features = false } | 24 | heapless = { version = "0.8", default-features = false } |
