Upgrade jubjub to 0.9, blake2b_simd to 1 (#147)

This commit is contained in:
Conrado Gouvea 2022-05-17 14:27:32 -03:00 committed by GitHub
parent b6a8c45b4c
commit e19279f70f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 5 deletions

View File

@ -2,8 +2,9 @@
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
handled inconsistently: the `VerificationKey` parsing logic rejected them, but
the identity `VerificationKey` could be produced from the zero `SigningKey`.

View File

@ -2,10 +2,9 @@
name = "redjubjub"
edition = "2018"
# When releasing to crates.io:
# - Update html_root_url
# - Update CHANGELOG.md
# - 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>"]
readme = "README.md"
license = "MIT OR Apache-2.0"
@ -18,10 +17,10 @@ description = "A standalone implementation of the RedJubjub signature scheme."
features = ["nightly"]
[dependencies]
blake2b_simd = "0.5"
blake2b_simd = "1"
byteorder = "1.4"
digest = "0.9"
jubjub = "0.8"
jubjub = "0.9"
rand_core = "0.6"
serde = { version = "1", optional = true, features = ["derive"] }
thiserror = "1.0"