fix(libzkp): upgrade to v0.8.2 (#504)

This commit is contained in:
Steven 2023-09-07 14:12:03 +08:00 committed by GitHub
parent fde2c3b6a7
commit c75ebdbdb0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View file

@ -24,7 +24,7 @@ import (
const ( const (
VersionMajor = 4 // Major version component of the current release VersionMajor = 4 // Major version component of the current release
VersionMinor = 4 // Minor version component of the current release VersionMinor = 4 // Minor version component of the current release
VersionPatch = 0 // Patch version component of the current release VersionPatch = 1 // Patch version component of the current release
VersionMeta = "sepolia" // Version metadata to append to the version string VersionMeta = "sepolia" // Version metadata to append to the version string
) )

View file

@ -2788,7 +2788,7 @@ dependencies = [
[[package]] [[package]]
name = "prover" name = "prover"
version = "0.8.1" version = "0.8.1"
source = "git+https://github.com/scroll-tech/scroll-prover?tag=v0.8.1#5b94df914877aa7f20f7c37fabf80d73f1c8cf2c" source = "git+https://github.com/scroll-tech/scroll-prover?tag=v0.8.2#02b68773531eec81355ee713c0155bf76aa968b6"
dependencies = [ dependencies = [
"aggregator", "aggregator",
"anyhow", "anyhow",
@ -3177,7 +3177,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d470e29e933dac4101180fd6574971892315c414cf2961a192729089687cc9b" checksum = "9d470e29e933dac4101180fd6574971892315c414cf2961a192729089687cc9b"
dependencies = [ dependencies = [
"derive_more", "derive_more",
"primitive-types 0.11.1", "primitive-types 0.12.1",
"rlp", "rlp",
"ruint-macro", "ruint-macro",
"rustc_version", "rustc_version",

View file

@ -20,7 +20,7 @@ maingate = { git = "https://github.com/scroll-tech/halo2wrong", branch = "halo2-
halo2curves = { git = "https://github.com/scroll-tech/halo2curves.git", branch = "0.3.1-derive-serde" } halo2curves = { git = "https://github.com/scroll-tech/halo2curves.git", branch = "0.3.1-derive-serde" }
[dependencies] [dependencies]
prover = { git = "https://github.com/scroll-tech/scroll-prover", tag = "v0.8.1" } prover = { git = "https://github.com/scroll-tech/scroll-prover", tag = "v0.8.2" }
anyhow = "1.0" anyhow = "1.0"
log = "0.4" log = "0.4"