Skip to content

Commit 7738a15

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

File tree

4 files changed

+2
-144
lines changed

4 files changed

+2
-144
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: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ poseidon = { path = "poseidon" }
5252

5353
# UNCOMMENTED_IN_CI mina-curves = { git = "https://github.com/openmina/proof-systems", branch = "rebase-openmina", features = [ "32x9" ] }
5454
kimchi = { git = "https://github.com/openmina/proof-systems", branch = "rebase-openmina" }
55-
kimchi-stubs = { git = "https://github.com/openmina/proof-systems", branch = "rebase-openmina" }
5655
mina-curves = { git = "https://github.com/openmina/proof-systems", branch = "rebase-openmina" }
5756
mina-hasher = { git = "https://github.com/openmina/proof-systems", branch = "rebase-openmina" }
5857
mina-poseidon = { git = "https://github.com/openmina/proof-systems", branch = "rebase-openmina" }
@@ -61,7 +60,6 @@ o1-utils = { git = "https://github.com/openmina/proof-systems", branch = "rebase
6160
poly-commitment = { git = "https://github.com/openmina/proof-systems", branch = "rebase-openmina" }
6261

6362
# kimchi.path = "../deps/proof-systems/kimchi"
64-
# kimchi-stubs.path = "../deps/proof-systems/kimchi-stubs"
6563
# mina-curves.path = "../deps/proof-systems/curves"
6664
# mina-hasher.path = "../deps/proof-systems/hasher"
6765
# mina-poseidon.path = "../deps/proof-systems/poseidon"

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)