Skip to content

Commit

Permalink
feat: use 1.3.0-rc2
Browse files Browse the repository at this point in the history
  • Loading branch information
ratankaliani committed Sep 7, 2024
1 parent 175c7ed commit d84e9d7
Show file tree
Hide file tree
Showing 3 changed files with 115 additions and 54 deletions.
143 changes: 102 additions & 41 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", 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" }
# 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 @@ -89,7 +89,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 d84e9d7

Please sign in to comment.