Skip to content

Commit de3df2a

Browse files
committed
Removed kimchi stubs from dependancies
1 parent c616910 commit de3df2a

File tree

4 files changed

+17
-159
lines changed

4 files changed

+17
-159
lines changed

Cargo.lock

Lines changed: 1 addition & 139 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 15 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -51,23 +51,21 @@ mina-p2p-messages = { path = "mina-p2p-messages" }
5151
poseidon = { path = "poseidon" }
5252

5353
# UNCOMMENTED_IN_CI mina-curves = { git = "https://github.com/openmina/proof-systems", branch = "rebase-openmina", features = [ "32x9" ] }
54-
kimchi = { git = "https://github.com/openmina/proof-systems", branch = "rebase-openmina" }
55-
kimchi-stubs = { git = "https://github.com/openmina/proof-systems", branch = "rebase-openmina" }
56-
mina-curves = { git = "https://github.com/openmina/proof-systems", branch = "rebase-openmina" }
57-
mina-hasher = { git = "https://github.com/openmina/proof-systems", branch = "rebase-openmina" }
58-
mina-poseidon = { git = "https://github.com/openmina/proof-systems", branch = "rebase-openmina" }
59-
mina-signer = { git = "https://github.com/openmina/proof-systems", branch = "rebase-openmina" }
60-
o1-utils = { git = "https://github.com/openmina/proof-systems", branch = "rebase-openmina" }
61-
poly-commitment = { git = "https://github.com/openmina/proof-systems", branch = "rebase-openmina" }
62-
63-
# kimchi.path = "../deps/proof-systems/kimchi"
64-
# kimchi-stubs.path = "../deps/proof-systems/kimchi-stubs"
65-
# mina-curves.path = "../deps/proof-systems/curves"
66-
# mina-hasher.path = "../deps/proof-systems/hasher"
67-
# mina-poseidon.path = "../deps/proof-systems/poseidon"
68-
# mina-signer.path = "../deps/proof-systems/signer"
69-
# o1-utils.path = "../deps/proof-systems/utils"
70-
# poly-commitment.path = "../deps/proof-systems/poly-commitment"
54+
# kimchi = { git = "https://github.com/openmina/proof-systems", branch = "rebase-openmina" }
55+
# mina-curves = { git = "https://github.com/openmina/proof-systems", branch = "rebase-openmina" }
56+
# mina-hasher = { git = "https://github.com/openmina/proof-systems", branch = "rebase-openmina" }
57+
# mina-poseidon = { git = "https://github.com/openmina/proof-systems", branch = "rebase-openmina" }
58+
# mina-signer = { git = "https://github.com/openmina/proof-systems", branch = "rebase-openmina" }
59+
# o1-utils = { git = "https://github.com/openmina/proof-systems", branch = "rebase-openmina" }
60+
# poly-commitment = { git = "https://github.com/openmina/proof-systems", branch = "rebase-openmina" }
61+
62+
kimchi.path = "../deps/proof-systems/kimchi"
63+
mina-curves.path = "../deps/proof-systems/curves"
64+
mina-hasher.path = "../deps/proof-systems/hasher"
65+
mina-poseidon.path = "../deps/proof-systems/poseidon"
66+
mina-signer.path = "../deps/proof-systems/signer"
67+
o1-utils.path = "../deps/proof-systems/utils"
68+
poly-commitment.path = "../deps/proof-systems/poly-commitment"
7169

7270
juniper = { version = "0.16" }
7371
libp2p = { git = "https://github.com/openmina/rust-libp2p", rev = "5c44c7d9", default-features = false }

ledger/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ strum = "0.26.2"
3333
strum_macros = "0.26.4"
3434

3535
bs58 = "0.4.0"
36-
kimchi-stubs = { workspace = true }
3736
mina-p2p-messages = { workspace = true }
3837

3938
base64 = "0.13"

ledger/src/proofs/verifiers.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ use std::{
55
};
66

77
use anyhow::Context;
8-
use kimchi_stubs::WithLagrangeBasis;
98
use once_cell::sync::OnceCell;
109
use openmina_core::{info, log::system_time, warn};
1110
use serde::{Deserialize, Serialize};
@@ -23,7 +22,7 @@ use kimchi::{
2322
mina_curves::pasta::Pallas,
2423
};
2524
use mina_curves::pasta::{Fp, Fq};
26-
use poly_commitment::{ipa::SRS, SRS as _};
25+
use poly_commitment::{ipa::SRS, lagrange_basis::WithLagrangeBasis, SRS as _};
2726

2827
use crate::{proofs::BACKEND_TOCK_ROUNDS_N, VerificationKey};
2928

0 commit comments

Comments
 (0)