-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
91 lines (86 loc) · 2.83 KB
/
Cargo.toml
File metadata and controls
91 lines (86 loc) · 2.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
[workspace]
resolver = "2"
members = ["crates/*", "crates/agglayer-elf-build/sample-program/*"]
[workspace.package]
version = "0.15.0"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/agglayer/interop"
[workspace.lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = [
'cfg(feature, values("cargo-clippy"))',
'cfg(fuzzing)',
] }
[workspace.dependencies]
agglayer-bincode = { path = "crates/agglayer-bincode", version = "0.15.0" }
agglayer-elf-build = { path = "crates/agglayer-elf-build", version = "0.15.0" }
agglayer-evm-client = { path = "crates/agglayer-evm-client", version = "0.15.0" }
agglayer-interop-types = { path = "crates/agglayer-interop-types", version = "0.15.0" }
agglayer-interop-grpc-types = { path = "crates/agglayer-interop-grpc-types", version = "0.15.0" }
agglayer-primitives = { path = "crates/agglayer-primitives", version = "0.15.0" }
agglayer-tries = { path = "crates/agglayer-tries", version = "0.15.0" }
unified-bridge = { path = "crates/unified-bridge", version = "0.15.0" }
sp1-build = "=6.1.0"
sp1-sdk = "=6.1.0"
sp1-zkvm = { version = "=6.1.0", default-features = false }
alloy = { version = "1.8.3", features = ["full"] }
alloy-primitives = { version = "1.5.7", features = ["serde", "k256"] }
arbitrary = { version = "1.4.2", features = ["derive"] }
arc-swap = "1.7"
async-trait = "0.1.89"
axum = "0.8.6"
base64 = "0.22.1"
bincode = "1.3"
bolero = { version = "0.13.4", features = ["arbitrary"] }
buildstructor = "0.5.4"
byteorder = "1.5"
cargo_metadata = "0.18"
clap = { version = "4.5.60", features = ["derive", "env"] }
color-eyre = "0.6.5"
derive_more = { version = "2.1", features = [
"from",
"into",
"from_str",
"as_ref",
"display",
] }
dirs = "5.0"
dotenvy = "0.15.7"
educe = "0.6.0"
eyre = "0.6.12"
fail = { version = "0.5.1", default-features = false }
futures = "0.3.31"
hex = "0.4.3"
hex-literal = "1.1"
http = "1.4"
hyper = "1.9"
insta = { version = "1.44", features = ["toml", "yaml", "json"] }
jsonrpsee = { version = "0.24.7", features = ["full"] }
k256 = "0.13.4"
lazy_static = "1.5"
mockall = "0.14.0"
parking_lot = "0.12.5"
pbjson = "0.9.0"
pin-project = "1.1"
prost = "0.13.4"
rand = "0.9.2"
rs_merkle = { version = "1.4", default-features = false }
rstest = "0.25.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_with = "3.18"
sha2 = "0.11.0"
test-log = "0.2.16"
thiserror = "2.0"
tiny-keccak = { version = "2.0", features = ["keccak"] }
tokio = { version = "1.50", features = ["full"] }
tokio-stream = { version = "0.1.18", features = ["sync"] }
tokio-util = "0.7.18"
toml = "0.8.20"
tonic = { version = "0.13.1", default-features = false }
tonic-types = "0.13.1"
tower = "0.5.3"
tracing = "0.1.44"
tracing-appender = "0.2.4"
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }
url = { version = "2.5", features = ["serde"] }