equihash 0.2.0
This commit is contained in:
parent
59b20c6e31
commit
a3cae5d36a
|
@ -7,8 +7,10 @@ and this library adheres to Rust's notion of
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [0.2.0] - 2022-06-24
|
||||
### Changed
|
||||
- MSRV is now 1.56.1.
|
||||
- Bumped dependencies to `blake2b_simd 1`.
|
||||
|
||||
## [0.1.0] - 2020-07-10
|
||||
Initial release.
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "equihash"
|
||||
description = "The Equihash Proof-of-Work function"
|
||||
version = "0.1.0"
|
||||
version = "0.2.0"
|
||||
authors = ["Jack Grigg <jack@z.cash>"]
|
||||
homepage = "https://github.com/zcash/librustzcash"
|
||||
repository = "https://github.com/zcash/librustzcash"
|
||||
|
|
|
@ -7,7 +7,7 @@ and this library adheres to Rust's notion of
|
|||
|
||||
## [Unreleased]
|
||||
### Changed
|
||||
- Bumped dependencies to `orchard 0.2`.
|
||||
- Bumped dependencies to `equihash 0.2`, `orchard 0.2`.
|
||||
- `zcash_primitives::consensus`:
|
||||
- `MainNetwork::activation_height` now returns the activation height for
|
||||
`NetworkUpgrade::Nu5`.
|
||||
|
|
|
@ -26,7 +26,7 @@ bls12_381 = "0.7"
|
|||
bs58 = { version = "0.4", features = ["check"], optional = true }
|
||||
byteorder = "1"
|
||||
chacha20poly1305 = "0.9"
|
||||
equihash = { version = "0.1", path = "../components/equihash" }
|
||||
equihash = { version = "0.2", path = "../components/equihash" }
|
||||
ff = "0.12"
|
||||
fpe = "0.5"
|
||||
group = "0.12"
|
||||
|
|
Loading…
Reference in New Issue