From 1c4dcfc415e6d5c51bad2f241647577d36e09c11 Mon Sep 17 00:00:00 2001 From: moana Date: Wed, 3 Apr 2024 17:16:58 +0100 Subject: [PATCH] Update dependencies --- CHANGELOG.md | 5 +++++ Cargo.toml | 6 +++--- rust-toolchain.toml | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3376e2c..b95a8fb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Changed + +- Update `jubjub-schnorr` dependency to "0.2" +- Update `phoenix-core` dependency to "0.26" + ## [0.10.0] - 2024-02-28 ### Removed diff --git a/Cargo.toml b/Cargo.toml index 39deefa..99baf94 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,15 +16,15 @@ dusk-plonk = { version = "0.19", default-features = false, features = ["rkyv-imp dusk-bls12_381 = { version = "0.13", default-features = false, features = ["rkyv-impl", "alloc"] } dusk-jubjub = { version = "0.14", default-features = false, features = ["rkyv-impl", "alloc"] } ff = { version = "0.13", default-features = false } -jubjub-schnorr = { version = "0.1", features = ["rkyv-impl", "alloc", "double"] } -phoenix-core = { version = "0.25.0-rc.0", features = ["rkyv-impl", "alloc"] } +jubjub-schnorr = { version = "0.2", features = ["rkyv-impl", "alloc", "double"] } +phoenix-core = { version = "0.26", features = ["rkyv-impl", "alloc"] } rand_core = { version = "0.6", default-features=false, features = ["getrandom"] } nstack = { version = "0.16" } rkyv = { version = "0.7", default-features = false } bytecheck = { version = "0.6", default-features = false } [dev-dependencies] -criterion = "0.3" +criterion = "0.5" lazy_static = "1.4" [[bench]] diff --git a/rust-toolchain.toml b/rust-toolchain.toml index aecbe3c..e4ada99 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,3 +1,3 @@ [toolchain] -channel = "nightly-2023-05-22" +channel = "nightly-2023-11-10" components = ["rustfmt", "clippy"]