Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions crates/privacy_circuit_verify/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ stwo-cairo-serialize = { git = "https://github.com/starkware-libs/stwo-cairo", r
stwo-cairo-common = { git = "https://github.com/starkware-libs/stwo-cairo", rev = "0a5e70b7" }

# stwo circuits
circuit-cairo-verifier = { git = "https://github.com/starkware-libs/stwo-circuits", rev = "9ff7fc8" }
circuits-stark-verifier = { git = "https://github.com/starkware-libs/stwo-circuits", rev = "9ff7fc8" }
circuits = { git = "https://github.com/starkware-libs/stwo-circuits", rev = "9ff7fc8" }
circuit-serialize = { git = "https://github.com/starkware-libs/stwo-circuits", rev = "9ff7fc8" }
circuit-common = { git = "https://github.com/starkware-libs/stwo-circuits", rev = "9ff7fc8" }
circuit-verifier = { git = "https://github.com/starkware-libs/stwo-circuits", rev = "9ff7fc8" }
circuit-cairo-verifier = { git = "https://github.com/starkware-libs/stwo-circuits", rev = "618db0a" }
circuits-stark-verifier = { git = "https://github.com/starkware-libs/stwo-circuits", rev = "618db0a" }
circuits = { git = "https://github.com/starkware-libs/stwo-circuits", rev = "618db0a" }
circuit-serialize = { git = "https://github.com/starkware-libs/stwo-circuits", rev = "618db0a" }
circuit-common = { git = "https://github.com/starkware-libs/stwo-circuits", rev = "618db0a" }
circuit-verifier = { git = "https://github.com/starkware-libs/stwo-circuits", rev = "618db0a" }

# stwo
stwo = { version = "2.2.0" }
Expand Down
2 changes: 1 addition & 1 deletion crates/privacy_circuit_verify/src/consts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ pub const PRIVACY_BOOTLOADER_JSON: &[u8] = include_bytes!(
);
pub const CIRCUIT_OUTPUT_ADDRESSES: [usize; 3] = [3, 4, 2];
pub const PRIVACY_RECURSION_CIRCUIT_PREPROCESSED_ROOT: [u32; 8] = [
660814213, 1644929400, 1719380572, 1563331739, 925907163, 437112022, 929302389, 574632232,
1573981902, 1069113805, 1792032830, 1315817085, 256782222, 1874301472, 654802805, 1407352920,
];
pub const CAIRO_LOG_BLOWUP_FACTOR: u32 = 3;
pub const CAIRO_TRACE_LOG_SIZE: u32 = 20;
Expand Down
14 changes: 7 additions & 7 deletions crates/privacy_prove/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ stwo-cairo-serialize = { git = "https://github.com/starkware-libs/stwo-cairo", r
stwo-cairo-common = { git = "https://github.com/starkware-libs/stwo-cairo", rev = "0a5e70b7" }

# stwo circuits
circuit-cairo-verifier = { git = "https://github.com/starkware-libs/stwo-circuits", rev = "9ff7fc8" }
circuits-stark-verifier = { git = "https://github.com/starkware-libs/stwo-circuits", rev = "9ff7fc8" }
circuits = { git = "https://github.com/starkware-libs/stwo-circuits", rev = "9ff7fc8" }
circuit-serialize = { git = "https://github.com/starkware-libs/stwo-circuits", rev = "9ff7fc8" }
circuit-prover = { git = "https://github.com/starkware-libs/stwo-circuits", rev = "9ff7fc8" }
circuit-common = { git = "https://github.com/starkware-libs/stwo-circuits", rev = "9ff7fc8" }
circuit-verifier = { git = "https://github.com/starkware-libs/stwo-circuits", rev = "9ff7fc8" }
circuit-cairo-verifier = { git = "https://github.com/starkware-libs/stwo-circuits", rev = "618db0a" }
circuits-stark-verifier = { git = "https://github.com/starkware-libs/stwo-circuits", rev = "618db0a" }
circuits = { git = "https://github.com/starkware-libs/stwo-circuits", rev = "618db0a" }
circuit-serialize = { git = "https://github.com/starkware-libs/stwo-circuits", rev = "618db0a" }
circuit-prover = { git = "https://github.com/starkware-libs/stwo-circuits", rev = "618db0a" }
circuit-common = { git = "https://github.com/starkware-libs/stwo-circuits", rev = "618db0a" }
circuit-verifier = { git = "https://github.com/starkware-libs/stwo-circuits", rev = "618db0a" }

# stwo
stwo = { version = "2.2.0", features = ["parallel"] }
Expand Down
Loading