-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
65 lines (55 loc) · 3.27 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[workspace]
resolver = "2"
members = ["bin/*", "crates/prover", "crates/prover-types", "crates/prometheus", "crates/linea/*"]
[workspace.package]
edition = "2021"
version = "0.5.0"
authors = ["Automata Team"]
homepage = "https://www.ata.network/"
[workspace.dependencies]
base = { git = "https://github.com/automata-network/base-rs", features = ["prover"] }
prover-types = { path = "crates/prover-types" }
prometheus = { path = "crates/prometheus" }
scroll-executor = { git = "https://github.com/automata-network/scroll-prover" }
scroll-verifier = { git = "https://github.com/automata-network/scroll-prover" }
scroll-da-codec = { git = "https://github.com/automata-network/scroll-prover" }
linea-mimc = { path = "crates/linea/mimc" }
linea-zktrie = { path = "crates/linea/zktrie" }
linea-shomei = { path = "crates/linea/shomei" }
linea-verifier = { path = "crates/linea/verifier" }
linea-executor = { path = "crates/linea/executor" }
url = "2.5.0"
ff = { package = "ff_ce", git = "https://github.com/matter-labs/ff", features = ["asm_derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1" }
automata-sgx-sdk = { git = "https://github.com/automata-network/automata-sgx-sdk" }
automata-build-script = { git = "https://github.com/automata-network/automata-sgx-sdk" }
blst = { version = "=0.3.13" } # make sure the patch takes effect
scroll-revm = { package = "revm", git = "https://github.com/automata-network/scroll-revm", branch = "scroll-evm-executor/v41", default-features = false, features = ["scroll-default-handler", "std", "optional_no_base_fee", "scroll-poseidon-codehash", "serde"] }
linea-revm = { package = "revm", git = "https://github.com/automata-network/linea-revm", branch = "linea-revm/v41", default-features = false, features = ["std", "secp256k1"] }
lazy_static = "1.5.0"
env_logger = { version = "0.11" }
log = { version = "0.4" }
zktrie = { git = "https://github.com/scroll-tech/zktrie.git", branch = "main", features= ["rs_zktrie"] }
# rpc
jsonrpsee = { git = "https://github.com/automata-network/jsonrpsee" }
scroll-zstd = { git = "https://github.com/scroll-tech/da-codec" }
scroll-zstd-encoder = { git = "https://github.com/scroll-tech/da-codec", package = "encoder" }
alloy = { version = "0.2", default-features = false, features = ["std", "rlp", "serde"] }
alloy-rlp = { version = "0.3", features = ["derive"] }
async-trait = "0.1"
c-kzg = { version = "1", default-features = false, features = ["std", "ethereum_kzg_settings"] }
hex = "0.4.3"
[patch.crates-io]
ethers-core = { git = "https://github.com/scroll-tech/ethers-rs.git", branch = "feat/rkyv" }
ethers-signers = { git = "https://github.com/scroll-tech/ethers-rs.git", branch = "feat/rkyv" }
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" }
ff = { git = "https://github.com/scroll-tech/ff", branch = "feat/sp1" }
blst = { git = "https://github.com/automata-network/blst", branch = "teaclave_2.0_v0.3.13" }
ring = { git = "https://github.com/automata-network/ring-sgx" }
[patch.'https://github.com/scroll-tech/zstd-rs']
zstd = { git = "https://github.com/automata-network/scroll-zstd-rs", branch = "hack/mul-block-2.0"}
[profile.release]
debug-assertions = true
debug = 1