-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
48 lines (41 loc) · 1.19 KB
/
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
41
42
43
44
45
46
[package]
name = "ethers-userop"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.72"
ethers = { version="2.0.8", features=["ws"] }
silius_primitives = { git = "https://github.com/qi-protocol/silius.git", branch="ethuo", package = "silius-primitives" }
silius_grpc = { git = "https://github.com/qi-protocol/silius.git", branch="ethuo", package = "silius-grpc" }
silius_rpc = { git = "https://github.com/qi-protocol/silius.git", branch="ethuo", package = "silius-rpc" }
reqwest = "0.11.18"
hashbrown = {version="0.14.0", features=["serde"]}
async-trait = "0.1.72"
dirs = "5.0.1"
expanded-pathbuf = "0.1.2"
pin-utils = "0.1"
tokio = "1.31.0"
tracing = "0.1.37"
tracing-subscriber = "0.3.17"
dotenv = "0.15.0"
serde_json = "1"
serde = "1"
thiserror = "1.0.40"
alloy-primitives = "0.2.0"
alloy-sol-types = "0.2.0"
env_logger = "0.10.0"
tempdir = "0.3.7"
log = "0.4.20"
rand = "0.8.5"
parking_lot = "0.12.1"
regex = "1.9.4"
clap = { version = "4", features = ["derive", "env"]}
[[bin]]
name = "ethuo"
path = "src/main.rs"
[[bin]]
name = "example"
path = "src/bin/example.rs"
[lib]
path = "src/lib.rs"