Upgrade jubjub to 0.9, blake2b_simd to 1

This commit is contained in:
Conrado Gouvea 2022-05-13 16:50:25 -03:00
parent b6a8c45b4c
commit c285d1d381
2 changed files with 5 additions and 5 deletions

View File

@ -2,8 +2,9 @@
Entries are listed in reverse chronological order. Entries are listed in reverse chronological order.
## Unreleased ## 0.5.0
* Upgrade `jubjub` to 0.9, `blake2b_simd` to 1
* Fixed a bug where small-order verification keys (including the identity) were * Fixed a bug where small-order verification keys (including the identity) were
handled inconsistently: the `VerificationKey` parsing logic rejected them, but handled inconsistently: the `VerificationKey` parsing logic rejected them, but
the identity `VerificationKey` could be produced from the zero `SigningKey`. the identity `VerificationKey` could be produced from the zero `SigningKey`.

View File

@ -2,10 +2,9 @@
name = "redjubjub" name = "redjubjub"
edition = "2018" edition = "2018"
# When releasing to crates.io: # When releasing to crates.io:
# - Update html_root_url
# - Update CHANGELOG.md # - Update CHANGELOG.md
# - Create git tag. # - Create git tag.
version = "0.4.0" version = "0.5.0"
authors = ["Henry de Valence <hdevalence@hdevalence.ca>", "Deirdre Connolly <durumcrustulum@gmail.com>", "Chelsea Komlo <me@chelseakomlo.com>"] authors = ["Henry de Valence <hdevalence@hdevalence.ca>", "Deirdre Connolly <durumcrustulum@gmail.com>", "Chelsea Komlo <me@chelseakomlo.com>"]
readme = "README.md" readme = "README.md"
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
@ -18,10 +17,10 @@ description = "A standalone implementation of the RedJubjub signature scheme."
features = ["nightly"] features = ["nightly"]
[dependencies] [dependencies]
blake2b_simd = "0.5" blake2b_simd = "1"
byteorder = "1.4" byteorder = "1.4"
digest = "0.9" digest = "0.9"
jubjub = "0.8" jubjub = "0.9"
rand_core = "0.6" rand_core = "0.6"
serde = { version = "1", optional = true, features = ["derive"] } serde = { version = "1", optional = true, features = ["derive"] }
thiserror = "1.0" thiserror = "1.0"