Skip to content

Commit

Permalink
fix check bytes
Browse files Browse the repository at this point in the history
  • Loading branch information
lightsing committed Jul 23, 2024
1 parent 1db5f2e commit 10a15f7
Show file tree
Hide file tree
Showing 4 changed files with 115 additions and 43 deletions.
110 changes: 72 additions & 38 deletions Cargo.lock

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

21 changes: 21 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,17 @@ c-kzg = "1.0.2"
primitive-types = { git = "https://github.com/scroll-tech/parity-common.git", branch = "feat/rkyv", features = ["rkyv"] }
ethereum-types = { git = "https://github.com/scroll-tech/parity-common.git", branch = "feat/rkyv", features = ["rkyv"] }

# for local development
#ethers-core = { path = "../ethers-rs/ethers-core", features = ["rkyv", "scroll"] }
#ethers-providers = { path = "../ethers-rs/ethers-providers" }
#ethers = { path = "../ethers-rs/ethers" }
#ethers-signers = { path = "../ethers-rs/ethers-signers" }
#primitive-types = { path = "../parity-common/primitive-types", features = ["rkyv"] }
#ethereum-types = { path = "../parity-common/ethereum-types", features = ["rkyv"] }
#snark-verifier = { path = "../snark-verifier/snark-verifier" }
#snark-verifier-sdk = { path = "../snark-verifier/snark-verifier-sdk", default-features = false, features = ["loader_halo2", "loader_evm", "halo2-pse"] }


[patch.crates-io]
ethers-core = { git = "https://github.com/scroll-tech/ethers-rs.git", branch = "feat/rkyv" }
ethers-providers = { git = "https://github.com/scroll-tech/ethers-rs.git", branch = "feat/rkyv" }
Expand All @@ -82,6 +93,16 @@ halo2curves = { git = "https://github.com/scroll-tech/halo2curves", branch = "v0
primitive-types = { git = "https://github.com/scroll-tech/parity-common.git", branch = "feat/rkyv" }
ethereum-types = { git = "https://github.com/scroll-tech/parity-common.git", branch = "feat/rkyv" }

# for local development
#ethers-core = { path = "../ethers-rs/ethers-core" }
#ethers-providers = { path = "../ethers-rs/ethers-providers" }
#ethers = { path = "../ethers-rs/ethers" }
#ethers-etherscan = { path = "../ethers-rs/ethers-etherscan" }
#ethers-signers = { path = "../ethers-rs/ethers-signers" }
#primitive-types = { path = "../parity-common/primitive-types" }
#ethereum-types = { path = "../parity-common/ethereum-types" }


[patch."https://github.com/privacy-scaling-explorations/halo2.git"]
halo2_proofs = { git = "https://github.com/scroll-tech/halo2.git", branch = "v1.1" }
[patch."https://github.com/privacy-scaling-explorations/poseidon.git"]
Expand Down
2 changes: 1 addition & 1 deletion eth-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ log.workspace = true
regex.workspace = true
serde.workspace = true
serde_json.workspace = true
serde_with = "1.12"
serde_with = "3.9"
uint = "0.9.1"
itertools.workspace = true
subtle.workspace = true
Expand Down
Loading

0 comments on commit 10a15f7

Please sign in to comment.