Skip to content

Commit

Permalink
update changelog, use 'dep:' where appropriate
Browse files Browse the repository at this point in the history
  • Loading branch information
conradoplg committed Mar 4, 2024
1 parent a51a7cf commit 412e168
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
12 changes: 8 additions & 4 deletions frost-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion frost-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = []

Expand Down

0 comments on commit 412e168

Please sign in to comment.