-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathCargo.toml
More file actions
123 lines (106 loc) · 4.19 KB
/
Cargo.toml
File metadata and controls
123 lines (106 loc) · 4.19 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
117
118
119
120
121
122
123
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
version = "0.23.1"
edition = "2024"
rust-version = "1.88"
authors = ["Alloy Contributors"]
license = "MIT OR Apache-2.0"
homepage = "https://github.com/alloy-rs/op-alloy"
repository = "https://github.com/alloy-rs/op-alloy"
exclude = ["benches/", "tests/"]
[workspace.lints.rustdoc]
all = "warn"
[workspace.lints.rust]
missing-debug-implementations = "warn"
missing-docs = "warn"
unreachable-pub = "warn"
unused-must-use = "deny"
rust-2018-idioms = "deny"
unnameable-types = "warn"
[workspace.lints.clippy]
all = { level = "warn", priority = -1 }
missing-const-for-fn = "warn"
use-self = "warn"
option-if-let-else = "warn"
redundant-clone = "warn"
result_large_err = "allow"
[workspace.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[workspace.dependencies]
# Workspace
op-alloy-consensus = { version = "0.23.1", path = "crates/consensus", default-features = false }
op-alloy-network = { version = "0.23.1", path = "crates/network", default-features = false }
op-alloy-provider = { version = "0.23.1", path = "crates/provider", default-features = false }
op-alloy-rpc-types = { version = "0.23.1", path = "crates/rpc-types", default-features = false }
op-alloy-rpc-types-engine = { version = "0.23.1", path = "crates/rpc-types-engine", default-features = false }
op-alloy-rpc-jsonrpsee = { version = "0.23.1", path = "crates/rpc-jsonrpsee", default-features = false }
# Alloy
alloy-eips = { version = "1.1.2", default-features = false }
alloy-serde = { version = "1.1.2", default-features = false }
alloy-signer = { version = "1.1.2", default-features = false }
alloy-network = { version = "1.1.2", default-features = false }
alloy-provider = { version = "1.1.2", default-features = false }
alloy-transport = { version = "1.1.2", default-features = false }
alloy-consensus = { version = "1.6.2", default-features = false }
alloy-rpc-types-eth = { version = "1.1.2", default-features = false }
alloy-rpc-types-engine = { version = "1.1.2", default-features = false }
alloy-network-primitives = { version = "1.1.2", default-features = false }
alloy-json-rpc = { version = "1.1.2", default-features = false }
# Alloy RLP
alloy-rlp = { version = "0.3", default-features = false }
# Alloy Core
alloy-sol-types = { version = "1.2.0", default-features = false }
alloy-primitives = { version = "1.2.0", default-features = false }
# Serde
serde = { version = "1.0", default-features = false, features = [
"derive",
"alloc",
] }
serde_with = "3.12"
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }
# Encoding
snap = "1.1.1"
bincode = "2.0.1"
ethereum_ssz = "0.9"
ethereum_ssz_derive = "0.9"
# rpc
jsonrpsee = { version = "0.26", features = [
"jsonrpsee-core",
"client-core",
"server-core",
"macros",
] }
jsonrpsee-core = "0.26"
jsonrpsee-types = "0.26"
# misc
async-trait = "0.1.87"
derive_more = { version = "2.0", default-features = false }
thiserror = { version = "2.0", default-features = false }
similar-asserts = "1.7"
# hashing
sha2 = { version = "0.10", default-features = false }
# tracing
tracing-subscriber = "0.3.19"
tracing = { version = "0.1.41", default-features = false }
## misc-testing
arbitrary = { version = "1.4", features = ["derive"] }
arbtest = "0.3"
rand = "0.9"
proptest = "1.6"
proptest-derive = "0.5"
tokio = "1"
rstest = "0.24.0"
[patch.crates-io]
# alloy-eips = { git = "https://github.com/alloy-rs/alloy", rev = "2390e6cd5" }
# alloy-serde = { git = "https://github.com/alloy-rs/alloy", rev = "2390e6cd5" }
# alloy-signer = { git = "https://github.com/alloy-rs/alloy", rev = "2390e6cd5" }
# alloy-network = { git = "https://github.com/alloy-rs/alloy", rev = "2390e6cd5" }
# alloy-provider = { git = "https://github.com/alloy-rs/alloy", rev = "2390e6cd5" }
# alloy-transport = { git = "https://github.com/alloy-rs/alloy", rev = "2390e6cd5" }
# alloy-consensus = { git = "https://github.com/alloy-rs/alloy", rev = "2390e6cd5" }
# alloy-rpc-types-eth = { git = "https://github.com/alloy-rs/alloy", rev = "2390e6cd5" }
# alloy-rpc-types-engine = { git = "https://github.com/alloy-rs/alloy", rev = "2390e6cd5" }
# alloy-network-primitives = { git = "https://github.com/alloy-rs/alloy", rev = "2390e6cd5" }