-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (26 loc) · 826 Bytes
/
Copy pathCargo.toml
File metadata and controls
29 lines (26 loc) · 826 Bytes
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
[package]
name = "ethx"
version = "0.1.0"
edition = "2024"
[workspace]
members = [".", "ethx-commons"]
[dependencies]
alloy-chains = "0.2"
alloy-contract = "2.0.0"
alloy-network = "2.0.0"
alloy-primitives = "1.5.7"
alloy-provider = { version = "2.0.0", features = ["reqwest", "ws", "ipc"] }
alloy-rpc-types-eth = "2.0.0"
alloy-signer = "2.0.0"
alloy-sol-types = "1.5.7"
clap = { version = "4", features = ["derive", "env", "unicode", "wrap_help"] }
eyre = "0.6"
ethx-commons = { path = "ethx-commons" }
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "2"
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
[dev-dependencies]
alloy-node-bindings = "2.0.0"
alloy-signer-local = "2.0.0"