-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
41 lines (38 loc) · 1.21 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
[package]
name = "eth-node-monitor"
version = "0.1.0"
edition = "2021"
authors = ["CoW Protocol Developers"]
license = "GPL-3.0"
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
alloy = { git = "https://github.com/alloy-rs/alloy", rev = "bfd0fda", features = [
"network",
"providers",
"provider-http",
"provider-ws",
"rpc-client",
"rpc-types-eth",
] }
axum = { version = "0.7.5", features = ["macros"] }
axum-tracing-opentelemetry = "0.18.0"
clap = { version = "4.5.4", features = ["derive"] }
eyre = "0.6.12"
futures-util = "0.3.30"
opentelemetry = "0.22.0"
opentelemetry-otlp = { version = "0.15.0", features = ["grpc-tonic"] }
opentelemetry_sdk = { version = "0.22.1", features = ["rt-tokio"] }
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.116"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync"] }
tracing = { version = "0.1.40", features = ["attributes"] }
tracing-opentelemetry = "0.23.0"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
url = "2.5.0"
warp = "0.3.7"
[profile.maxperf]
inherits = "release"
lto = "fat"
codegen-units = 1
incremental = false