-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
65 lines (52 loc) · 2.85 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
[workspace]
resolver = "2"
members = ["crates/*", "bin/*"]
[workspace.package]
edition = "2021"
version = "0.1.0"
authors = ["Automata Team"]
homepage = "https://www.ata.network/"
[workspace.dependencies]
app-scroll-verifier = { path = "crates/app-scroll-verifier" }
scroll-executor = { path = "crates/executor" }
scroll-da-codec = { path = "crates/da-codec" }
scroll-verifier = { path = "crates/verifier" }
tee = { path = "crates/tee" }
base = { git = "https://github.com/automata-network/base-rs", features = ["prover"] }
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"] }
zktrie = { git = "https://github.com/scroll-tech/zktrie.git", branch = "main", features= ["rs_zktrie"] }
eth-types = { git = "https://github.com/scroll-tech/zkevm-circuits", features = ["scroll"], branch = "feat/rkyv" }
mpt-zktrie = { git = "https://github.com/scroll-tech/zkevm-circuits", branch = "feat/rkyv" }
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", "json"] }
alloy-rlp = { version = "0.3", features = ["derive"] }
serde = { version = "=1.0.197", features = ["derive"] }
c-kzg = { version = "1", default-features = false, features = ["std", "ethereum_kzg_settings"] }
blst = { version = "=0.3.13" } # make sure the patch takes effect
hex = "0.4.3"
lazy_static = "1.5.0"
env_logger = { version = "0.11" }
log = { version = "0.4" }
serde_json = { version = "1" }
rand = "0.8.5"
automata-sgx-sdk = { git = "https://github.com/automata-network/automata-sgx-sdk" }
automata-build-script = { git = "https://github.com/automata-network/automata-sgx-sdk" }
secp256k1 = { version = "0.29", default-features = false, features = [
"global-context",
"recovery",
"rand",
] }
[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