From 4a6b711a2c51468e184a9b62aefa3115a60806d6 Mon Sep 17 00:00:00 2001 From: moana Date: Thu, 8 Aug 2024 13:40:41 +0200 Subject: [PATCH] core: Update dependencies --- core/CHANGELOG.md | 4 ++++ core/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/core/CHANGELOG.md b/core/CHANGELOG.md index 4932db0..7fc53dd 100644 --- a/core/CHANGELOG.md +++ b/core/CHANGELOG.md @@ -12,6 +12,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - impl `Eq` for `StealthAddress` - impl `Eq` for `TxSkeleton` +### Changed + +- Update `bls12_381-bls` dep to 0.4 + ## [0.30.0] - 2024-07-03 ### Added diff --git a/core/Cargo.toml b/core/Cargo.toml index 2302d38..e08bd5a 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -11,7 +11,7 @@ exclude = [".github/workflows/dusk-ci.yml", ".gitignore"] rand = { version = "0.8", default-features = false } dusk-bytes = "0.1" dusk-bls12_381 = { version = "0.13", default-features = false } -bls12_381-bls = { version = "0.3", default-features = false } +bls12_381-bls = { version = "0.4", default-features = false } dusk-jubjub = { version = "0.14", default-features = false, features = ["zeroize"] } dusk-poseidon = "0.39" jubjub-schnorr = "0.4"