aboutsummaryrefslogtreecommitdiff
path: root/embassy-boot/Cargo.toml
diff options
context:
space:
mode:
authorkingofpayne <[email protected]>2024-09-16 22:07:56 +0200
committerGitHub <[email protected]>2024-09-16 22:07:56 +0200
commit6d89f2729ab7a6ee3dd78ccaef1b16677b5a9eee (patch)
tree1aa6772a246e777b6e21daefac131b03eacfbf62 /embassy-boot/Cargo.toml
parentae8caf3f55d91579234f199458c369536fd39bb1 (diff)
boot: flash-erase-zero (#3344)
Allow compatibility with devices whose flash erase set bytes to 0x00 instead of 0xFF, using a new flash-erase-zero feature. See issue #3342.
Diffstat (limited to 'embassy-boot/Cargo.toml')
-rw-r--r--embassy-boot/Cargo.toml1
1 files changed, 1 insertions, 0 deletions
diff --git a/embassy-boot/Cargo.toml b/embassy-boot/Cargo.toml
index d27fe763e..79ba6456a 100644
--- a/embassy-boot/Cargo.toml
+++ b/embassy-boot/Cargo.toml
@@ -47,6 +47,7 @@ ed25519-dalek = { version = "2", default-features = false, features = ["std", "r
47[features] 47[features]
48ed25519-dalek = ["dep:ed25519-dalek", "_verify"] 48ed25519-dalek = ["dep:ed25519-dalek", "_verify"]
49ed25519-salty = ["dep:salty", "_verify"] 49ed25519-salty = ["dep:salty", "_verify"]
50flash-erase-zero = []
50 51
51#Internal features 52#Internal features
52_verify = [] 53_verify = []