From 4a67f7837a636e11940d9766d51838f5f3f7bd44 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 6 Jun 2023 04:01:03 +0000 Subject: [PATCH 1/3] Bump tagged-base64 from 0.3.0 to 0.3.1 Bumps [tagged-base64](https://github.com/espressosystems/tagged-base64) from 0.3.0 to 0.3.1. - [Release notes](https://github.com/espressosystems/tagged-base64/releases) - [Commits](https://github.com/espressosystems/tagged-base64/compare/0.3.0...9207d39ba7a9c11801511a7077ea4330b6173e44) --- updated-dependencies: - dependency-name: tagged-base64 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- plonk/Cargo.toml | 2 +- primitives/Cargo.toml | 2 +- utilities/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/plonk/Cargo.toml b/plonk/Cargo.toml index dfd348c0d..657eecfc0 100644 --- a/plonk/Cargo.toml +++ b/plonk/Cargo.toml @@ -31,7 +31,7 @@ rand_chacha = { version = "0.3.1", default-features = false } rayon = { version = "1.5.0", optional = true } serde = { version = "1.0", default-features = false, features = ["derive"] } sha3 = "^0.10" -tagged-base64 = { git = "https://github.com/espressosystems/tagged-base64", tag = "0.3.0" } +tagged-base64 = { git = "https://github.com/espressosystems/tagged-base64", tag = "0.3.1" } [dev-dependencies] ark-bls12-377 = "0.4.0" diff --git a/primitives/Cargo.toml b/primitives/Cargo.toml index f104d5780..106ef4e5c 100644 --- a/primitives/Cargo.toml +++ b/primitives/Cargo.toml @@ -40,7 +40,7 @@ rayon = { version = "1.5.0", optional = true } serde = { version = "1.0", default-features = false, features = ["derive"] } sha2 = { version = "0.10.1", default-features = false } sha3 = { version = "0.10.5", default-features = false } -tagged-base64 = { git = "https://github.com/espressosystems/tagged-base64", tag = "0.3.0" } +tagged-base64 = { git = "https://github.com/espressosystems/tagged-base64", tag = "0.3.1" } typenum = { version = "1.15.0", default-features = false, features = ["no_std"] } zeroize = { version = "1.5", default-features = false } diff --git a/utilities/Cargo.toml b/utilities/Cargo.toml index 870fce9a2..13ad56105 100644 --- a/utilities/Cargo.toml +++ b/utilities/Cargo.toml @@ -16,7 +16,7 @@ digest = { version = "0.10.1", default-features = false } rayon = { version = "1.5.0", optional = true } serde = { version = "1.0", default-features = false, features = ["derive"] } sha2 = { version = "0.10.1", default-features = false } -tagged-base64 = { git = "https://github.com/espressosystems/tagged-base64", tag = "0.3.0" } +tagged-base64 = { git = "https://github.com/espressosystems/tagged-base64", tag = "0.3.1" } [dev-dependencies] ark-bls12-377 = "0.4.0" From 60901087d06a10f0c3cb492ff8e2845bc51279c1 Mon Sep 17 00:00:00 2001 From: MRain Date: Tue, 6 Jun 2023 13:06:07 -0400 Subject: [PATCH 2/3] Update dependency --- CHANGELOG.md | 1 + plonk/Cargo.toml | 2 +- primitives/Cargo.toml | 2 +- utilities/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3265ef912..1f8f4e68b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -32,6 +32,7 @@ and follow [semantic versioning](https://semver.org/) for our releases. - [#238](https://github.com/EspressoSystems/jellyfish/pull/238) add public keys into signature aggregation APIs - [#251](https://github.com/EspressoSystems/jellyfish/pull/251) add sign_key_ref api for BLSKeyPair +- [#297](https://github.com/EspressoSystems/jellyfish/pull/297) Updated `tagged-base64` dependency to the `crates.io` package ### Removed diff --git a/plonk/Cargo.toml b/plonk/Cargo.toml index 657eecfc0..11fafbff7 100644 --- a/plonk/Cargo.toml +++ b/plonk/Cargo.toml @@ -31,7 +31,7 @@ rand_chacha = { version = "0.3.1", default-features = false } rayon = { version = "1.5.0", optional = true } serde = { version = "1.0", default-features = false, features = ["derive"] } sha3 = "^0.10" -tagged-base64 = { git = "https://github.com/espressosystems/tagged-base64", tag = "0.3.1" } +tagged-base64 = "0.3.2" [dev-dependencies] ark-bls12-377 = "0.4.0" diff --git a/primitives/Cargo.toml b/primitives/Cargo.toml index 106ef4e5c..8599197e7 100644 --- a/primitives/Cargo.toml +++ b/primitives/Cargo.toml @@ -40,7 +40,7 @@ rayon = { version = "1.5.0", optional = true } serde = { version = "1.0", default-features = false, features = ["derive"] } sha2 = { version = "0.10.1", default-features = false } sha3 = { version = "0.10.5", default-features = false } -tagged-base64 = { git = "https://github.com/espressosystems/tagged-base64", tag = "0.3.1" } +tagged-base64 = "0.3.2" typenum = { version = "1.15.0", default-features = false, features = ["no_std"] } zeroize = { version = "1.5", default-features = false } diff --git a/utilities/Cargo.toml b/utilities/Cargo.toml index 13ad56105..5809d8a12 100644 --- a/utilities/Cargo.toml +++ b/utilities/Cargo.toml @@ -16,7 +16,7 @@ digest = { version = "0.10.1", default-features = false } rayon = { version = "1.5.0", optional = true } serde = { version = "1.0", default-features = false, features = ["derive"] } sha2 = { version = "0.10.1", default-features = false } -tagged-base64 = { git = "https://github.com/espressosystems/tagged-base64", tag = "0.3.1" } +tagged-base64 = "0.3.2" [dev-dependencies] ark-bls12-377 = "0.4.0" From 8960bd2dc9e3bd58697f0c7f8cc6fdc6fa08f497 Mon Sep 17 00:00:00 2001 From: MRain Date: Thu, 8 Jun 2023 11:14:54 -0400 Subject: [PATCH 3/3] update to 0.3.3 --- plonk/Cargo.toml | 2 +- primitives/Cargo.toml | 2 +- utilities/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/plonk/Cargo.toml b/plonk/Cargo.toml index 11fafbff7..4672cfed4 100644 --- a/plonk/Cargo.toml +++ b/plonk/Cargo.toml @@ -31,7 +31,7 @@ rand_chacha = { version = "0.3.1", default-features = false } rayon = { version = "1.5.0", optional = true } serde = { version = "1.0", default-features = false, features = ["derive"] } sha3 = "^0.10" -tagged-base64 = "0.3.2" +tagged-base64 = "0.3.3" [dev-dependencies] ark-bls12-377 = "0.4.0" diff --git a/primitives/Cargo.toml b/primitives/Cargo.toml index 8599197e7..32998bb55 100644 --- a/primitives/Cargo.toml +++ b/primitives/Cargo.toml @@ -40,7 +40,7 @@ rayon = { version = "1.5.0", optional = true } serde = { version = "1.0", default-features = false, features = ["derive"] } sha2 = { version = "0.10.1", default-features = false } sha3 = { version = "0.10.5", default-features = false } -tagged-base64 = "0.3.2" +tagged-base64 = "0.3.3" typenum = { version = "1.15.0", default-features = false, features = ["no_std"] } zeroize = { version = "1.5", default-features = false } diff --git a/utilities/Cargo.toml b/utilities/Cargo.toml index 5809d8a12..6aba0e3ee 100644 --- a/utilities/Cargo.toml +++ b/utilities/Cargo.toml @@ -16,7 +16,7 @@ digest = { version = "0.10.1", default-features = false } rayon = { version = "1.5.0", optional = true } serde = { version = "1.0", default-features = false, features = ["derive"] } sha2 = { version = "0.10.1", default-features = false } -tagged-base64 = "0.3.2" +tagged-base64 = "0.3.3" [dev-dependencies] ark-bls12-377 = "0.4.0"