-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
50 lines (47 loc) · 1.13 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
[package]
name = "parallel-evm-explorer"
version = "0.1.0"
edition = "2021"
[dependencies]
alloy = { version = "0.8.1", features = [
"providers",
"transports",
"transport-http",
"rpc",
"rpc-types",
"provider-debug-api",
] }
axum = "0.7.9"
clap = { version = "4.5.23", features = ["derive"] }
config = "0.15.0"
eyre = "0.6.12"
reqwest = { version = "0.12.9", features = ["json"] }
serde = { version = "1.0.216", features = ["derive"] }
serde_derive = "1.0.216"
shadow-rs = "0.37.0"
sqlx = { version = "0.8.2", features = [
"runtime-tokio",
"tls-native-tls",
"macros",
"migrate",
"derive",
"postgres",
"rust_decimal",
"time",
"json",
] }
time = { version = "0.3.37", features = ["serde"] }
tokio = { version = "1.42.0", features = ["full"] }
tower-http = { version = "0.6.2", features = [
"cors",
"trace",
"catch-panic",
"util",
] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter", "json"] }
url = { version = "2.5.4", features = ["serde"] }
[package.metadata.cargo-machete]
ignored = ["url", "time"]
[build-dependencies]
shadow-rs = "0.37.0"