diff options
| author | Lucas Martins Mendes <[email protected]> | 2024-09-03 16:02:39 -0300 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-09-03 21:02:39 +0200 |
| commit | 32cff6530fdb81066451cc1d3f1fbbb420e985da (patch) | |
| tree | 5cda89e745681a13aaf82df31d817d3291fc980c | |
| parent | b277f42c9d681ce3c929858adffcefbdb7adabef (diff) | |
chore: fix using default_features instead of default-features in embassy boot dependency (#3306)
| -rw-r--r-- | embassy-boot/Cargo.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/embassy-boot/Cargo.toml b/embassy-boot/Cargo.toml index 85b3695a1..d27fe763e 100644 --- a/embassy-boot/Cargo.toml +++ b/embassy-boot/Cargo.toml | |||
| @@ -27,7 +27,7 @@ features = ["defmt"] | |||
| 27 | defmt = { version = "0.3", optional = true } | 27 | defmt = { version = "0.3", optional = true } |
| 28 | digest = "0.10" | 28 | digest = "0.10" |
| 29 | log = { version = "0.4", optional = true } | 29 | log = { version = "0.4", optional = true } |
| 30 | ed25519-dalek = { version = "2", default_features = false, features = ["digest"], optional = true } | 30 | ed25519-dalek = { version = "2", default-features = false, features = ["digest"], optional = true } |
| 31 | embassy-embedded-hal = { version = "0.2.0", path = "../embassy-embedded-hal" } | 31 | embassy-embedded-hal = { version = "0.2.0", path = "../embassy-embedded-hal" } |
| 32 | embassy-sync = { version = "0.6.0", path = "../embassy-sync" } | 32 | embassy-sync = { version = "0.6.0", path = "../embassy-sync" } |
| 33 | embedded-storage = "0.3.1" | 33 | embedded-storage = "0.3.1" |
| @@ -42,7 +42,7 @@ rand = "0.8" | |||
| 42 | futures = { version = "0.3", features = ["executor"] } | 42 | futures = { version = "0.3", features = ["executor"] } |
| 43 | sha1 = "0.10.5" | 43 | sha1 = "0.10.5" |
| 44 | critical-section = { version = "1.1.1", features = ["std"] } | 44 | critical-section = { version = "1.1.1", features = ["std"] } |
| 45 | ed25519-dalek = { version = "2", default_features = false, features = ["std", "rand_core", "digest"] } | 45 | ed25519-dalek = { version = "2", default-features = false, features = ["std", "rand_core", "digest"] } |
| 46 | 46 | ||
| 47 | [features] | 47 | [features] |
| 48 | ed25519-dalek = ["dep:ed25519-dalek", "_verify"] | 48 | ed25519-dalek = ["dep:ed25519-dalek", "_verify"] |
