Skip to content

Commit

Permalink
downgrade to 1.2 (#114)
Browse files Browse the repository at this point in the history
  • Loading branch information
ratankaliani authored Sep 7, 2024
1 parent 78a037e commit 2119439
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 115 deletions.
143 changes: 41 additions & 102 deletions Cargo.lock

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

24 changes: 12 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -71,18 +71,18 @@ alloy-sol-types = { version = "0.8" }
op-alloy-consensus = { version = "0.2", default-features = false }

# sp1
# sp1-lib = { version = "1.2.0-rc1", features = ["verify"] }
# sp1-zkvm = { version = "1.2.0-rc1", features = ["verify"] }
# sp1-sdk = { version = "1.2.0-rc1" }
# sp1-build = { version = "1.2.0-rc1" }
sp1-lib = { git = "https://github.com/succinctlabs/sp1.git", branch = "tamir/v1.3.0-rc2", features = [
"verify",
] }
sp1-zkvm = { git = "https://github.com/succinctlabs/sp1.git", branch = "tamir/v1.3.0-rc2", features = [
"verify",
] }
sp1-sdk = { git = "https://github.com/succinctlabs/sp1.git", branch = "tamir/v1.3.0-rc2" }
sp1-build = { git = "https://github.com/succinctlabs/sp1.git", branch = "tamir/v1.3.0-rc2" }
sp1-lib = { version = "1.2.0", features = ["verify"] }
sp1-zkvm = { version = "1.2.0", features = ["verify"] }
sp1-sdk = { version = "1.2.0" }
sp1-build = { version = "1.2.0" }
# sp1-lib = { git = "https://github.com/succinctlabs/sp1.git", branch = "tamir/v1.3.0-rc2", features = [
# "verify",
# ] }
# sp1-zkvm = { git = "https://github.com/succinctlabs/sp1.git", branch = "tamir/v1.3.0-rc2", features = [
# "verify",
# ] }
# sp1-sdk = { git = "https://github.com/succinctlabs/sp1.git", branch = "tamir/v1.3.0-rc2" }
# sp1-build = { git = "https://github.com/succinctlabs/sp1.git", branch = "tamir/v1.3.0-rc2" }

[profile.release-client-lto]
inherits = "release"
Expand Down
2 changes: 1 addition & 1 deletion utils/host/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ pub fn get_agg_proof_stdin(
let SP1Proof::Compressed(compressed_proof) = proof else {
panic!();
};
stdin.write_proof(*compressed_proof, vkey.vk.clone());
stdin.write_proof(compressed_proof, vkey.vk.clone());
}

// Write the aggregation inputs to the stdin.
Expand Down

0 comments on commit 2119439

Please sign in to comment.