From 15ef150f381c8ff074011ae0698350a0fbc214bf Mon Sep 17 00:00:00 2001 From: Dan Cline <6798349+Rjected@users.noreply.github.com> Date: Wed, 8 May 2024 18:06:09 -0400 Subject: [PATCH] chore: bump c-kzg to 1.0.2 (#1390) --- Cargo.lock | 4 ++-- crates/precompile/Cargo.toml | 2 +- crates/primitives/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b10795368b..9c1edc6c9f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -730,9 +730,9 @@ dependencies = [ [[package]] name = "c-kzg" -version = "1.0.0" +version = "1.0.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3130f3d8717cc02e668a896af24984d5d5d4e8bf12e278e982e0f1bd88a0f9af" +checksum = "cdf100c4cea8f207e883ff91ca886d621d8a166cb04971dfaa9bb8fd99ed95df" dependencies = [ "blst", "cc", diff --git a/crates/precompile/Cargo.toml b/crates/precompile/Cargo.toml index 8c7c7e6fcb..14c009d7d6 100644 --- a/crates/precompile/Cargo.toml +++ b/crates/precompile/Cargo.toml @@ -30,7 +30,7 @@ sha2 = { version = "0.10", default-features = false } aurora-engine-modexp = { version = "1.1", default-features = false } # Optional KZG point evaluation precompile -c-kzg = { version = "1.0.0", default-features = false, optional = true } +c-kzg = { version = "1.0.2", default-features = false, optional = true } # ecRecover precompile k256 = { version = "0.13.3", default-features = false, features = ["ecdsa"] } diff --git a/crates/primitives/Cargo.toml b/crates/primitives/Cargo.toml index 07b049a0e7..b23697b172 100644 --- a/crates/primitives/Cargo.toml +++ b/crates/primitives/Cargo.toml @@ -31,7 +31,7 @@ bitvec = { version = "1", default-features = false, features = ["alloc"] } bitflags = { version = "2.5.0", default-features = false } # For setting the CfgEnv KZGSettings. Enabled by c-kzg flag. -c-kzg = { version = "1.0.0", default-features = false, optional = true } +c-kzg = { version = "1.0.2", default-features = false, optional = true } once_cell = { version = "1.19", default-features = false, optional = true } # utility