diff --git a/Cargo.lock b/Cargo.lock index 8f6d3746ca..4da7802269 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -478,9 +478,9 @@ dependencies = [ [[package]] name = "c-kzg" -version = "0.4.2" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "94a4bc5367b6284358d2a6a6a1dc2d92ec4b86034561c3b9d3341909752fd848" +checksum = "3130f3d8717cc02e668a896af24984d5d5d4e8bf12e278e982e0f1bd88a0f9af" dependencies = [ "blst", "cc", diff --git a/crates/precompile/Cargo.toml b/crates/precompile/Cargo.toml index b27ac67511..1ad51ffdb6 100644 --- a/crates/precompile/Cargo.toml +++ b/crates/precompile/Cargo.toml @@ -22,7 +22,7 @@ sha2 = { version = "0.10", default-features = false } aurora-engine-modexp = { version = "1.0", default-features = false } # Optional KZG point evaluation precompile -c-kzg = { version = "0.4.2", default-features = false, optional = true } +c-kzg = { version = "1.0.0", 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 d4b5a70801..4c513d908f 100644 --- a/crates/primitives/Cargo.toml +++ b/crates/primitives/Cargo.toml @@ -26,7 +26,7 @@ bitvec = { version = "1", default-features = false, features = ["alloc"] } bitflags = { version = "2.4.2", default-features = false } # For setting the CfgEnv KZGSettings. Enabled by c-kzg flag. -c-kzg = { version = "0.4.2", default-features = false, optional = true } +c-kzg = { version = "1.0.0", default-features = false, optional = true } once_cell = { version = "1.19", default-features = false, optional = true } # utility @@ -89,8 +89,4 @@ optional_no_base_fee = [] optional_beneficiary_reward = [] # See comments in `revm-precompile` -c-kzg = [ - "dep:c-kzg", - "dep:once_cell", - "dep:derive_more", -] +c-kzg = ["dep:c-kzg", "dep:once_cell", "dep:derive_more"]