mirror of
https://github.com/scroll-tech/scroll.git
synced 2026-01-14 00:18:03 -05:00
49 lines
2.2 KiB
TOML
49 lines
2.2 KiB
TOML
[package]
|
|
name = "prover"
|
|
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]
|
|
ethers-signers = { git = "https://github.com/scroll-tech/ethers-rs.git", branch = "v2.0.7" }
|
|
halo2curves = { git = "https://github.com/scroll-tech/halo2curves", branch = "v0.1.0" }
|
|
[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"]
|
|
poseidon = { git = "https://github.com/scroll-tech/poseidon.git", branch = "main" }
|
|
[patch."https://github.com/privacy-scaling-explorations/bls12_381"]
|
|
bls12_381 = { git = "https://github.com/scroll-tech/bls12_381", branch = "feat/impl_scalar_field" }
|
|
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
log = "0.4"
|
|
env_logger = "0.11.3"
|
|
serde = { version = "1.0.198", features = ["derive"] }
|
|
serde_json = "1.0.116"
|
|
futures = "0.3.30"
|
|
|
|
ethers-core = { git = "https://github.com/scroll-tech/ethers-rs.git", branch = "v2.0.7" }
|
|
ethers-providers = { git = "https://github.com/scroll-tech/ethers-rs.git", branch = "v2.0.7" }
|
|
halo2_proofs = { git = "https://github.com/scroll-tech/halo2.git", branch = "v1.1" }
|
|
snark-verifier-sdk = { git = "https://github.com/scroll-tech/snark-verifier", branch = "develop", default-features = false, features = ["loader_halo2", "loader_evm", "halo2-pse"] }
|
|
prover_darwin = { git = "https://github.com/scroll-tech/zkevm-circuits.git", tag = "v0.12.2", package = "prover", default-features = false, features = ["parallel_syn", "scroll"] }
|
|
prover_darwin_v2 = { git = "https://github.com/scroll-tech/zkevm-circuits.git", tag = "v0.13.1", package = "prover", default-features = false, features = ["parallel_syn", "scroll"] }
|
|
base64 = "0.13.1"
|
|
reqwest = { version = "0.12.4", features = ["gzip"] }
|
|
reqwest-middleware = "0.3"
|
|
reqwest-retry = "0.5"
|
|
once_cell = "1.19.0"
|
|
hex = "0.4.3"
|
|
tiny-keccak = { version = "2.0.0", features = ["sha3", "keccak"] }
|
|
rand = "0.8.5"
|
|
eth-keystore = "0.5.0"
|
|
rlp = "0.5.2"
|
|
tokio = "1.37.0"
|
|
sled = "0.34.7"
|
|
http = "1.1.0"
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
ctor = "0.2.8"
|