-
Notifications
You must be signed in to change notification settings - Fork 714
Expand file tree
/
Copy pathCargo.toml
More file actions
116 lines (112 loc) · 3.83 KB
/
Cargo.toml
File metadata and controls
116 lines (112 loc) · 3.83 KB
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
[workspace]
members = [
"crates/arbutil",
"crates/bench",
"crates/brotli",
"crates/caller-env",
"crates/jit",
"crates/validation",
"crates/prover",
"crates/stylus",
"crates/validator",
"crates/wasm-libraries/arbcompress",
"crates/wasm-libraries/arbcrypto",
"crates/wasm-libraries/forward",
"crates/wasm-libraries/host-io",
"crates/wasm-libraries/program-exec",
"crates/wasm-libraries/user-host",
"crates/wasm-libraries/user-host-trait",
"crates/wasm-libraries/user-test",
"crates/wasm-libraries/wasi-stub",
]
default-members = [
"crates/jit",
"crates/prover",
]
exclude = [
"crates/langs",
"crates/stylus/tests",
"crates/tools",
"crates/wasm-testsuite",
]
resolver = "2"
[workspace.package]
authors = ["Offchain Labs"]
edition = "2021"
homepage = "https://arbitrum.io"
license = "BSL"
publish = false
repository = "https://github.com/OffchainLabs/nitro.git"
rust-version = "1.88"
[workspace.dependencies]
anyhow = { version = "1.0.100" }
axum = { version = "0.8.8" }
bincode = { version = "1.3.3" }
bitvec = { version = "1.0.0" }
c-kzg = { version = "2.1.1" } # TODO: look into switching to rust-kzg (no crates.io release or hosted rustdoc yet)
clap = { version = "4.4.8" }
clru = { version = "0.6.2" }
criterion = { version = "0.5.0" }
derivative = { version = "2.2.0" }
digest = { version = "0.10.7" }
enum-iterator = { version = "2.0.1" }
eyre = { version = "0.6.5" }
fnv = { version = "1.0.7" }
gperftools = { version = "0.2.0" }
hex = { version = "0.4.3", default-features = false }
k256 = { version = "0.13.4", default-features = false}
lazy_static = { version = "1.4.0" }
libc = { version = "0.2.132" }
lru = { version = "0.16.3" }
nom = { version = "7.0.0" }
num = { version = "0.4" }
num-bigint = { version = "0.4.4" }
num-derive = { version = "0.4.1" }
num_enum = { version = "0.7.2", default-features = false }
num-traits = { version = "0.2.17" }
once_cell = { version = "1.19.0" }
parking_lot = { version = "0.12.1" }
paste = { version = "1.0.15" }
rand = { version = "0.8.4", default-features = false }
rand_pcg = { version = "0.3.1", default-features = false }
rayon = { version = "1.5.1" }
reqwest = { version = "0.13.1" }
ruint2 = { version = "1.9.0" }
rustc-demangle = { version = "0.1.21" }
serde = { version = "1.0.130" }
serde_json = { version = "1.0.67" }
serde_with = { version = "3.8.1" }
sha2 = { version = "0.10.9" }
sha3 = { version = "0.10.8" }
siphasher = { version = "0.3.10" }
smallvec = { version = "1.10.0" }
spin = { version = "0.10.0" }
static_assertions = { version = "1.1.0" }
structopt = { version = "0.3.26" }
tempdir = { version = "0.3.7" }
thiserror = { version = "1.0.33" }
tiny-keccak = { version = "2.0.2" }
tokio = { version = "1.48.0" }
tower-http = { version = "0.6.8" }
tracing = { version = "0.1.44" }
tracing-subscriber = { version = "0.3.22" }
wasmparser = { version = "0.121" }
wat = { version = "1.0.56" }
wee_alloc = { version = "0.4.5" }
arbutil = { path = "crates/arbutil" }
brotli = { path = "crates/brotli" }
caller-env = { path = "crates/caller-env", default-features = false }
forward = { path = "crates/wasm-libraries/forward" }
jit = { path = "crates/jit" }
prover = { path = "crates/prover", default-features = false }
stylus = { path = "crates/stylus", default-features = false }
user-host-trait = { path = "crates/wasm-libraries/user-host-trait" }
validation = { path = "crates/validation" }
wasmer = { path = "crates/tools/wasmer/lib/api" }
wasmer-compiler-cranelift = { path = "crates/tools/wasmer/lib/compiler-cranelift" }
wasmer-compiler-llvm = { path = "crates/tools/wasmer/lib/compiler-llvm" }
wasmer-compiler-singlepass = { path = "crates/tools/wasmer/lib/compiler-singlepass", default-features = false }
wasmer-types = { path = "crates/tools/wasmer/lib/types" }
wasmer-vm = { path = "crates/tools/wasmer/lib/vm" }
[profile.release]
debug = true