forked from taikoxyz/raiko
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
129 lines (114 loc) · 4.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
[workspace]
resolver = "2"
members = [
"lib",
"host",
"primitives",
"provers/sp1/prover",
"provers/risc0",
"provers/sgx/prover",
"provers/sgx/guest",
]
# Always optimize; building and running the guest takes much longer without optimization.
[profile.dev]
opt-level = 3
[profile.dev.build-override]
opt-level = 3
[profile.release]
debug = 1
lto = true
[profile.release.build-override]
opt-level = 3
[workspace.dependencies]
# raiko
raiko-lib = { path = "./lib", features = ["std"] }
raiko-primitives = { path = "./primitives" }
# revm
revm-primitives = { git = "https://github.com/taikoxyz/revm.git", branch = "fix-ecrecover", default-features = false }
revm = { git = "https://github.com/taikoxyz/revm.git", branch = "fix-ecrecover", default-features = false, features = [
"serde",
"taiko",
] }
# risc zero
risc0-zkvm = { version = "0.21.0", features = ["prove", "getrandom"]}
bonsai-sdk = { version = "0.7.0", features = ["async"]}
risc0-build = { version = "0.21.0" }
# SP1
sp1-sdk ={ git = "https://github.com/succinctlabs/sp1.git", branch = "main" }
sp1-zkvm ={ git = "https://github.com/succinctlabs/sp1.git", branch = "main" }
sp1-helper ={ git = "https://github.com/succinctlabs/sp1.git", branch = "main" }
# alloy
alloy-rlp = { version = "0.3", default-features = false }
alloy-rlp-derive = { version = "0.3", default-features = false }
alloy-core = { version = "0.7.0", default-features = false }
alloy-dyn-abi = { version = "0.7.0", default-features = false }
alloy-json-abi = { version = "0.7.0", default-features = false }
alloy-primitives = { version = "0.7.0", default-features = false }
alloy-sol-types = { version = "0.7.0", default-features = false }
alloy-rpc-types = { git = "https://github.com/brechtpd/alloy", branch = "175" }
alloy-rpc-client = { git = "https://github.com/brechtpd/alloy", branch = "175" }
alloy-consensus = { git = "https://github.com/brechtpd/alloy", branch = "175", features = ["serde"] }
alloy-network = { git = "https://github.com/brechtpd/alloy", branch = "175", features = ["k256"] }
alloy-eips = { git = "https://github.com/brechtpd/alloy", branch = "175", features = ["serde"] }
alloy-provider = { git = "https://github.com/brechtpd/alloy", branch = "175" }
alloy-transport-http = { git = "https://github.com/brechtpd/alloy", branch = "175" }
# ethers (TODO: remove)
ethers-contract = { git = "https://github.com/smtmfft/ethers-rs", branch = "ethers-core-2.0.10" }
ethers-core = { git = "https://github.com/smtmfft/ethers-rs", branch = "ethers-core-2.0.10" }
ethers-providers = { git = "https://github.com/smtmfft/ethers-rs", branch = "ethers-core-2.0.10" }
# serde
serde = { version = "1.0", default-features = false, features = ["derive", "alloc"] }
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }
serde_with = { version = "3.0" }
# tracing
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
tracing-appender = "0.2"
# memory
cap = { git = "https://github.com/brechtpd/cap", branch = "more-stats", features = ["stats"] }
# misc
hashbrown = { version = "0.14", features = ["inline-more"] }
c-kzg = "1.0.0"
tempfile = "3.8"
anyhow = "1.0"
bincode = "1.3.3"
bytemuck = "1.13"
clap = { version = "4.4.6", features = ["derive", "string"] }
structopt = "0.3.26"
flate2 = "1.0.28"
tokio = { version = "^1.23", features = ["full"] }
hyper = { version = "0.14.27", features = ["server"] }
tower = { version = "0.4.13", features = ["full"] }
lru_time_cache = "0.11.11"
prometheus = "0.13.3"
lazy_static = "1.4.0"
once_cell = "1.8.0"
thiserror = "1.0"
reqwest = { version = "0.11.22", features = ["json"] }
reqwest_alloy = { package = "reqwest", version = "0.12.4", features = ["json"] }
sha2 = "0.10.8"
proptest = "1.4.0"
rlp = "0.5.2"
url = "2.5.0"
cfg-if = "1.0.0"
libflate = { version = "2.0.0" }
sha3 = { version = "0.10", default-features = false }
log = { version = "0.4" }
env_logger = { version = "0.11.3" }
typetag = { version = "0.2.15" }
hex = { version = "0.4.3" }
thiserror-no-std = "2.0.2"
chrono = { version = "0.4", default-features = false }
hex-literal = "0.4"
assert_cmd = "2.0"
rstest = "0.18"
rand = "0.8.5"
rand_core = "0.6.4"
base64-serde = "0.7.0"
base64 = "0.21.7"
dirs = "5.0.1"
secp256k1 = { version = "0.27.0", features = [
'global-context',
"rand",
"recovery",
] }