From 37231a4655a96ae608da12e0a7c7c6d7a18773b5 Mon Sep 17 00:00:00 2001 From: moana Date: Wed, 13 Dec 2023 13:43:33 +0100 Subject: [PATCH] Update dependencies - dusk-bls12_381 -> 0.13 - dusk-jubjub -> 0.14 - dusk-plonk -> 0.18 - dusk-hades -> 0.23 --- CHANGELOG.md | 7 +++++++ Cargo.toml | 16 ++++------------ 2 files changed, 11 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c64c542..96f6107 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Changed + +- Update `dusk-bls12_381` to 0.13 +- Update `dusk-jubjub` to 0.14 +- Update `dusk-plonk` to 0.18 +- Update `dusk-hades` to 0.23 + ## [0.31.0] - 2023-10-11 ### Changed diff --git a/Cargo.toml b/Cargo.toml index adf8fc6..e66f9a6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,23 +6,15 @@ categories = ["algorithms", "cryptography", "no-std", "wasm"] keywords = ["cryptography", "zero-knowledge", "crypto"] repository = "https://github.com/dusk-network/poseidon252" -authors = [ - "zer0 ", - "vlopes11 ", - "CPerezz ", - "Kristoffer Ström ", - "Eduardo Leegwater Simões ", - "Moana Marcello ", -] edition = "2021" license = "MPL-2.0" [dependencies] -dusk-bls12_381 = { version = "0.12", default-features = false } -dusk-jubjub = { version = "0.13", default-features = false } +dusk-bls12_381 = { version = "0.13", default-features = false } +dusk-jubjub = { version = "0.14", default-features = false } dusk-bytes = "0.1" -dusk-hades = "0.22" -dusk-plonk = { version = "0.16", default-features = false, features = ["alloc"] } +dusk-hades = "0.23" +dusk-plonk = { version = "0.18", default-features = false, features = ["alloc"] } rkyv = { version = "0.7", optional = true, default-features = false } bytecheck = { version = "0.6", optional = true, default-features = false }