bump common-rs version to "scroll-dev-0920" (#54)

This commit is contained in:
Lawliet-Chan
2022-10-31 11:31:21 +08:00
committed by GitHub
parent e084283684
commit 1c3f366139
4 changed files with 821 additions and 467 deletions

View File

@@ -5,7 +5,7 @@ import (
"runtime/debug"
)
var tag = "prealpha-v3.1"
var tag = "prealpha-v4.0"
var commit = func() string {
if info, ok := debug.ReadBuildInfo(); ok {

File diff suppressed because it is too large Load Diff

View File

@@ -4,19 +4,12 @@ version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[patch.crates-io]
# This fork makes bitvec 0.20.x work with funty 1.1 and funty 1.2. Without
# this fork, bitvec 0.20.x is incompatible with funty 1.2, which we depend on,
# and leads to a compilation error. This can be removed once the upstream PR
# is resolved: https://github.com/bitvecto-rs/bitvec/pull/141
bitvec = { git = "https://github.com/ed255/bitvec.git", rev = "5cfc5fa8496c66872d21905e677120fc3e79693c" }
[lib]
crate-type = ["staticlib", "cdylib"]
[dependencies]
zkevm = { git = "https://github.com/scroll-tech/common-rs", rev = "4f76d52004dd87a" }
types = { git = "https://github.com/scroll-tech/common-rs", rev = "4f76d52004dd87a" }
zkevm = { git = "https://github.com/scroll-tech/common-rs"}
types = { git = "https://github.com/scroll-tech/common-rs"}
log = "0.4"
serde = "1.0"

View File

@@ -5,6 +5,6 @@ DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" > /dev/null 2>&1 && pwd)"
PROJ_DIR=$DIR"/.."
mkdir -p $PROJ_DIR/assets/params
wget https://circuit-release.s3.us-west-2.amazonaws.com/circuit-release/release-0804-degree25/test_seed -O $PROJ_DIR/assets/seed
wget https://circuit-release.s3.us-west-2.amazonaws.com/circuit-release/release-0804-degree25/test_params/params18 -O $PROJ_DIR/assets/params/params18
wget https://circuit-release.s3.us-west-2.amazonaws.com/circuit-release/release-0804-degree25/test_params/params25 -O $PROJ_DIR/assets/params/params25
wget https://circuit-release.s3.us-west-2.amazonaws.com/circuit-release/release-0920-degree25/test_seed -O $PROJ_DIR/assets/seed
wget https://circuit-release.s3.us-west-2.amazonaws.com/circuit-release/release-0920-degree25/test_params/params18 -O $PROJ_DIR/assets/params/params18
wget https://circuit-release.s3.us-west-2.amazonaws.com/circuit-release/release-0920-degree25/test_params/params25 -O $PROJ_DIR/assets/params/params25