Threads the fiat_{u64,u32}_backend features in the feature set

This allows the fiat backends introduced in
[curve25519-dalek/#342](https://github.com/dalek-cryptography/curve25519-dalek/pull/342)
to be used from an ed25519 import without cumbersome overrides.
This commit is contained in:
François Garillot 2021-05-03 16:26:11 -07:00
parent 925eb9ea56
commit c12cf48623
No known key found for this signature in database
GPG key ID: AC66C67853005854

View file

@ -62,4 +62,6 @@ asm = ["sha2/asm"]
legacy_compatibility = []
u64_backend = ["curve25519-dalek/u64_backend"]
u32_backend = ["curve25519-dalek/u32_backend"]
fiat_u64_backend = ["curve25519-dalek/fiat_u64_backend"]
fiat_u32_backend = ["curve25519-dalek/fiat_u32_backend"]
simd_backend = ["curve25519-dalek/simd_backend"]