From b16892ae0b196a94f1e7b27ddcf311ecc95a02a7 Mon Sep 17 00:00:00 2001 From: Tumas Date: Wed, 8 May 2024 16:00:21 +0300 Subject: [PATCH] make it compile --- Cargo.lock | 4 ++-- Cargo.toml | 6 +++--- eip_7594/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a0599f7e..f46bd086 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4093,7 +4093,7 @@ dependencies = [ [[package]] name = "kzg" version = "0.1.0" -source = "git+https://github.com/grandinetech/rust-kzg.git?branch=integration-raw#5e4383c71e8c6d4266a1b4573e3d2ff4c972fe06" +source = "git+https://github.com/grandinetech/rust-kzg.git?branch=integration-raw-2#7c0810ca0ca36daeeee81b02098e35be5472846f" dependencies = [ "blst", "sha2 0.10.8", @@ -6488,7 +6488,7 @@ dependencies = [ [[package]] name = "rust-kzg-blst" version = "0.1.0" -source = "git+https://github.com/grandinetech/rust-kzg.git?branch=integration-raw#5e4383c71e8c6d4266a1b4573e3d2ff4c972fe06" +source = "git+https://github.com/grandinetech/rust-kzg.git?branch=integration-raw-2#7c0810ca0ca36daeeee81b02098e35be5472846f" dependencies = [ "blst", "hex", diff --git a/Cargo.toml b/Cargo.toml index 41c0a855..8289c3ab 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -328,7 +328,7 @@ itertools = '0.12.1' jemalloc-ctl = '0.5.4' jemallocator = '0.5.4' jwt-simple = { version = '0.12.6', default-features = false, features = ['pure-rust'] } -kzg = { git = 'https://github.com/grandinetech/rust-kzg.git', branch = 'integration-raw' } +kzg = { git = 'https://github.com/grandinetech/rust-kzg.git', branch = 'integration-raw-2' } lazy_static = '1.4.0' libmdbx = { git = 'https://github.com/paradigmxyz/reth.git', package = 'reth-libmdbx', rev = '2d01f3608697eed05357fb847e25ad33ab59d702' } libp2p = { version = '0.53', default-features = false, features = ['metrics', 'dns', 'ecdsa', 'identify', 'macros', 'noise', 'plaintext', 'secp256k1', 'serde', 'tcp', 'tokio', 'yamux', 'quic', 'upnp'] } @@ -367,7 +367,7 @@ regex = '1.10.3' replace_with = '0.1.7' reqwest = { version = '0.11.24', features = ['blocking', 'json', 'native-tls-vendored'] } rusqlite = { version = '0.30.0', features = ['bundled'] } -rust-kzg-blst = { git = 'https://github.com/grandinetech/rust-kzg.git', branch = 'integration-raw' } +rust-kzg-blst = { git = 'https://github.com/grandinetech/rust-kzg.git', branch = 'integration-raw-2' } scrypt = '0.11.0' semver = '1.0.21' serde = { version = '1.0.196', features = ['derive', 'rc'] } @@ -424,7 +424,7 @@ arithmetic = { path = 'arithmetic' } binary_utils = { path = 'binary_utils' } bls = { path = 'bls' } builder_api = { path = 'builder_api' } -c-kzg = {git = 'https://github.com/ethereum/c-kzg-4844', branch = 'das' } +c-kzg = { git = 'https://github.com/ethereum/c-kzg-4844', branch = 'das' } clock = { path = 'clock' } database = { path = 'database' } deposit_tree = { path = 'deposit_tree' } diff --git a/eip_7594/Cargo.toml b/eip_7594/Cargo.toml index bc1d6b65..58148bac 100644 --- a/eip_7594/Cargo.toml +++ b/eip_7594/Cargo.toml @@ -8,7 +8,7 @@ workspace = true [dependencies] anyhow = { workspace = true } -c-kzg = {workspace = true} +c-kzg = { workspace = true } hashing = {workspace = true} helper_functions = {workspace = true} kzg_utils = { workspace = true }