-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (37 loc) · 925 Bytes
/
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
[workspace]
members = [
"crates/*",
"examples/",
]
resolver = "2"
[workspace.package]
version = "0.0.0"
edition = "2021"
rust-version = "1.76"
license = "GPL-3.0"
exclude = [ "examples/" ]
[workspace.dependencies]
suave-alloy-network = { path = "crates/network" }
suave-alloy-types = { path = "crates/types" }
suave-alloy = { path = "crates/suave-alloy" }
alloy = { git = "https://github.com/alloy-rs/alloy", rev = "e8a2df1", features = [
"contract",
"network",
"providers",
"provider-http",
"rpc-client",
"rpc-types-eth",
"rpc-types-trace",
"signers",
"signer-wallet",
"consensus",
"eips",
"serde",
"signer-wallet",
] }
alloy-rlp = { version = "0.3.4", features = ["derive"] }
async-trait = "0.1.79"
eyre = "0.6.12"
serde = { version = "1.0.197", features = ["serde_derive", "derive"] }
serde_json = "1.0.115"
tokio = { version = "1.37.0", features = ["full"] }