diff --git a/Cargo.lock b/Cargo.lock index 1b37936ef..dc2f658a1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -397,6 +397,7 @@ checksum = "702fc72eb24e5a1e48ce58027a675bc24edd52096d5397d4aea7c6dd9eca0bd1" [[package]] name = "constantine-core" version = "0.1.0" +source = "git+https://github.com/lynxcs/constantine.git?branch=rust-kzg-changes#f9b4079cff3d7a83df89a613d4ef0ca18449d411" dependencies = [ "constantine-sys", ] @@ -404,6 +405,7 @@ dependencies = [ [[package]] name = "constantine-ethereum-kzg" version = "0.1.0" +source = "git+https://github.com/lynxcs/constantine.git?branch=rust-kzg-changes#f9b4079cff3d7a83df89a613d4ef0ca18449d411" dependencies = [ "constantine-core", "constantine-sys", @@ -412,6 +414,7 @@ dependencies = [ [[package]] name = "constantine-sys" version = "0.1.0" +source = "git+https://github.com/lynxcs/constantine.git?branch=rust-kzg-changes#f9b4079cff3d7a83df89a613d4ef0ca18449d411" [[package]] name = "cpufeatures" diff --git a/constantine/Cargo.toml b/constantine/Cargo.toml index 3d9057305..eaca6e5bf 100644 --- a/constantine/Cargo.toml +++ b/constantine/Cargo.toml @@ -8,9 +8,9 @@ blst = "0.3.11" kzg = { path = "../kzg", default-features = false } libc = { version = "0.2.148", default-features = false } once_cell = { version = "1.18.0", features = ["critical-section"], default-features = false } -constantine-ethereum-kzg = { path = "../../constantine/constantine-rust/constantine-ethereum-kzg" } -constantine-sys = { path = "../../constantine/constantine-rust/constantine-sys" } -constantine-core = { path = "../../constantine/constantine-rust/constantine-core" } +constantine-ethereum-kzg = { 'git' = 'https://github.com/lynxcs/constantine.git' , branch='rust-kzg-changes' } +constantine-sys = { 'git' = 'https://github.com/lynxcs/constantine.git' , branch='rust-kzg-changes' } +constantine-core = { 'git' = 'https://github.com/lynxcs/constantine.git' , branch='rust-kzg-changes' } rand = { version = "0.8.5", optional = true } rayon = { version = "1.8.0", optional = true } smallvec = { version = "1.11.1", features = ["const_generics"] }