mirror of
https://github.com/scroll-tech/scroll.git
synced 2026-01-14 00:18:03 -05:00
44 lines
1.9 KiB
TOML
44 lines
1.9 KiB
TOML
[package]
|
|
name = "zkp"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[patch.crates-io]
|
|
gobuild = { git = "https://github.com/scroll-tech/gobuild.git" }
|
|
halo2curves = { git = "https://github.com/scroll-tech/halo2curves", branch = "v0.1.0" }
|
|
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" }
|
|
ethers-signers = { git = "https://github.com/scroll-tech/ethers-rs.git", branch = "v2.0.7" }
|
|
#ethers-etherscan = { git = "https://github.com/scroll-tech/ethers-rs.git", branch = "v2.0.7" }
|
|
#ethers = { git = "https://github.com/scroll-tech/ethers-rs.git", branch = "v2.0.7" }
|
|
[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]
|
|
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 = { git = "https://github.com/scroll-tech/zkevm-circuits.git", tag = "v0.10.3", default-features = false, features = ["parallel_syn", "scroll", "shanghai"] }
|
|
|
|
base64 = "0.13.0"
|
|
env_logger = "0.9.0"
|
|
libc = "0.2"
|
|
log = "0.4"
|
|
once_cell = "1.19"
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
serde_json = "1.0.66"
|
|
|
|
[profile.test]
|
|
opt-level = 3
|
|
|
|
[profile.release]
|
|
opt-level = 3
|