-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
57 lines (49 loc) · 1.62 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
47
48
49
50
51
52
53
54
55
56
57
[workspace]
resolver = "2"
members = ["bins/*", "db"]
[workspace.dependencies]
# reth
reth-primitives = { git = "https://github.com/0xprames/reth.git", branch = "discv4-recv-preempt" }
reth-network = { git = "https://github.com/0xprames/reth.git", branch = "discv4-recv-preempt" }
reth-discv4 = { git = "https://github.com/0xprames/reth.git", branch = "discv4-recv-preempt" }
reth-dns-discovery = { git = "https://github.com/0xprames/reth.git", branch = "discv4-recv-preempt" }
reth-eth-wire = { git = "https://github.com/0xprames/reth.git", branch = "discv4-recv-preempt" }
reth-ecies = { git = "https://github.com/0xprames/reth.git", branch = "discv4-recv-preempt" }
reth-provider = { git = "https://github.com/0xprames/reth.git", branch = "discv4-recv-preempt", features = [
"test-utils",
] }
# serialization
clap = { version = "4.4.6", features = ["derive"] }
serde_json = "1.0"
serde = { version = "1.0.188", features = ["derive"] }
# general
lru = "0.12.0"
async-trait = "0.1.74"
once_cell = "1.17.0"
eyre = "0.6.8"
ethers = { version = "2.0", features = ["ws", "rustls"] }
tokio = { version = "1.21", default-features = false, features = [
"full",
"tracing",
] }
tokio-stream = "0.1.14"
futures = "0.3.26"
chrono = "0.4.31"
tracing = "0.1"
tracing-subscriber = "0.3"
thiserror = "1.0.50"
console-subscriber = "0.2.0"
ipgeolocate = "0.3.5"
# crypto
secp256k1 = { version = "0.27.0", default-features = false, features = [
"global-context",
"rand-std",
"recovery",
] }
# aws
aws-config = { version = "0.56.1" }
aws-sdk-dynamodb = { version = "0.33.0" }
# sqlite
tokio-rusqlite = "0.5.0"
# postgresql
tokio-postgres = "0.7.10"