update changelog, use 'dep:' where appropriate

This commit is contained in:
Conrado Gouvea 2024-03-04 18:59:42 -03:00
parent a51a7cfe76
commit 412e16896c
2 changed files with 9 additions and 5 deletions

View File

@ -4,10 +4,14 @@ Entries are listed in reverse chronological order.
## Unreleased
* Add no-std support to all crates except frost-ed448. Note that you don't need
to use `default-features = false`; there is no `std` feature that is enabled
by default. Also note that it always links to an external `alloc` crate (i.e.
there is no `alloc` feature either).
* Add no-std support to all crates except frost-ed448. To use, do not enable the
`std` feature that is enabled by default (i.e. use `default-features =
false`); Note that it always links to an external `alloc` crate (i.e. there is
no `alloc` feature). When disabling `std`, the only impact in the API is that
`Error` will no longer implement the `std::error::Error` trait. This is a
breaking change if you are disabling default features but rely on `Error`
implementing `std::error::Error`. In that case, simply enable the `std`
feature.
## Released

View File

@ -65,7 +65,7 @@ internals = []
serde = ["dep:serde", "dep:serdect"]
serialization = ["serde", "dep:postcard"]
# Exposes ciphersuite-generic tests for other crates to use
test-impl = ["proptest", "serde_json", "criterion"]
test-impl = ["dep:proptest", "dep:serde_json", "dep:criterion"]
# Enable cheater detection
cheater-detection = []