aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Johnston <[email protected]>2025-08-15 08:49:41 +0800
committerMatt Johnston <[email protected]>2025-08-15 17:16:53 +0800
commit37707a7c7c34100e00d803717bcf11836b708380 (patch)
tree36da4630ec92bf7594230bee4a6f6677f7cc963b
parent410a18b536e73c005285b458eaeb8b6c3a71c1af (diff)
stm32: Update stm32-metapac
For hash algorithm register update.
-rw-r--r--embassy-stm32/CHANGELOG.md1
-rw-r--r--embassy-stm32/Cargo.toml8
2 files changed, 5 insertions, 4 deletions
diff --git a/embassy-stm32/CHANGELOG.md b/embassy-stm32/CHANGELOG.md
index 9ad117312..0f044419e 100644
--- a/embassy-stm32/CHANGELOG.md
+++ b/embassy-stm32/CHANGELOG.md
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
10 10
11- fix: Fix vrefbuf building with log feature 11- fix: Fix vrefbuf building with log feature
12- fix: Fix performing a hash after performing a hmac 12- fix: Fix performing a hash after performing a hmac
13- chore: Updated stm32-metapac and stm32-data dependencies
13 14
14## 0.3.0 - 2025-08-12 15## 0.3.0 - 2025-08-12
15 16
diff --git a/embassy-stm32/Cargo.toml b/embassy-stm32/Cargo.toml
index 691ce3b90..45b351acf 100644
--- a/embassy-stm32/Cargo.toml
+++ b/embassy-stm32/Cargo.toml
@@ -80,8 +80,8 @@ cortex-m = "0.7.6"
80futures-util = { version = "0.3.30", default-features = false } 80futures-util = { version = "0.3.30", default-features = false }
81sdio-host = "0.9.0" 81sdio-host = "0.9.0"
82critical-section = "1.1" 82critical-section = "1.1"
83stm32-metapac = { version = "17" } 83# stm32-metapac = { version = "17" }
84# stm32-metapac = { git = "https://github.com/embassy-rs/stm32-data-generated", tag = "stm32-data-9941f338734a2e6c1652267f64b13f7b35d8c9db" } 84stm32-metapac = { git = "https://github.com/embassy-rs/stm32-data-generated", tag = "stm32-data-ecb93d42a6cbcd9e09cab74873908a2ca22327f7" }
85 85
86vcell = "0.1.3" 86vcell = "0.1.3"
87nb = "1.0.0" 87nb = "1.0.0"
@@ -109,8 +109,8 @@ proptest-state-machine = "0.3.0"
109proc-macro2 = "1.0.36" 109proc-macro2 = "1.0.36"
110quote = "1.0.15" 110quote = "1.0.15"
111 111
112stm32-metapac = { version = "17", default-features = false, features = ["metadata"]} 112# stm32-metapac = { version = "17", default-features = false, features = ["metadata"]}
113#stm32-metapac = { git = "https://github.com/embassy-rs/stm32-data-generated", tag = "stm32-data-9941f338734a2e6c1652267f64b13f7b35d8c9db", default-features = false, features = ["metadata"] } 113stm32-metapac = { git = "https://github.com/embassy-rs/stm32-data-generated", tag = "stm32-data-ecb93d42a6cbcd9e09cab74873908a2ca22327f7", default-features = false, features = ["metadata"] }
114 114
115[features] 115[features]
116default = ["rt"] 116default = ["rt"]