Skip to content

Commit

Permalink
Merge pull request #5 from zcash/no-std
Browse files Browse the repository at this point in the history
Disable default features for `blake2b_simd` to enable no-std usage
  • Loading branch information
str4d authored Sep 20, 2024
2 parents 8683b1f + 4ea5bf6 commit c6a00c7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,10 @@ and this library adheres to Rust's notion of

## [Unreleased]

## [0.1.1] - 2024-09-20
### Fixed
- The `std` default feature of `blake2b_simd` is now disabled, to enable no-std
usage.

## [0.1.0] - 2023-12-07
Initial release.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zcash_spec"
version = "0.1.0"
version = "0.1.1"
authors = [
"Jack Grigg <[email protected]>",
]
Expand All @@ -12,4 +12,4 @@ repository = "https://github.com/zcash/zcash_spec"
license = "MIT OR Apache-2.0"

[dependencies]
blake2b_simd = "1"
blake2b_simd = { version = "1", default-features = false }

0 comments on commit c6a00c7

Please sign in to comment.