Skip to content

Commit

Permalink
Enable x25519-dalek's "u64_backend" feature by default, to have a…
Browse files Browse the repository at this point in the history
… default working compilation
  • Loading branch information
commial committed Aug 22, 2022
1 parent faf549e commit f5ae9c2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions mla/CHANGELOG.md
Expand Up @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added/Changed

- Introduce `"send"` feature, to provide `ArchiveWriter` with `Send` bound ([#120](https://github.com/ANSSI-FR/MLA/issues/120))
- Enable `x25519-dalek`'s `"u64_backend"` feature by default, to have a default working compilation
- Bump dependencies
- Dependencies: disable default features
- Code cleaning
Expand Down
3 changes: 3 additions & 0 deletions mla/Cargo.toml
Expand Up @@ -43,6 +43,9 @@ hex = { version = "0.4", default-features = false, features = ["alloc"]}
static_assertions = { version = "1", default-features = false }

[features]
# x25519-dalek depends on curve25519-dalek, which requires at least one feature to be enabled
# -> use default u64_backend (x25519-dalek's default) to have a working default compilation
default = ["x25519-dalek/u64_backend"]
send = []

[[bench]]
Expand Down

0 comments on commit f5ae9c2

Please sign in to comment.