forked from blocknative/gas-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (51 loc) · 1.37 KB
/
Cargo.toml
File metadata and controls
57 lines (51 loc) · 1.37 KB
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
[package]
name = "gas-agent"
version = "0.1.1"
edition = "2021"
description = "Blocknative Gas Agent - Generate real-time gas price estimates for the Gas Network"
homepage = "https://gas.network"
repository = "https://github.com/blocknative/gas-agent"
[profile.release]
opt-level = 3
codegen-units = 1
debug = false
lto = "thin"
incremental = false
panic = "abort"
[profile.dist]
inherits = "release"
strip = true
[dependencies]
alloy = { version = "~0.12.0", default-features = false, features = [
"signer-local",
"serde",
] }
tokio = { version = "~1.44.0", features = ["full"] }
serde = { version = "~1.0.219", features = ["derive"] }
serde_json = "~1.0.133"
anyhow = "~1.0.93"
thiserror = "~2.0.9"
clap = { version = "~4.5.37", features = ["derive", "env"] }
strum_macros = "~0.26.4"
strum = "~0.26.3"
reqwest = { version = "~0.12.9", features = ["json"] }
chrono = { version = "~0.4.39", features = ["serde"] }
rand = "~0.9.0"
rust_decimal = "~1.36.0"
rust_decimal_macros = "~1.36.0"
ntex = { version = "~2.5.0", features = ["tokio"] }
futures = "~0.3.31"
tracing = "~0.1.41"
dotenv = "~0.15.0"
opentelemetry-prometheus = "~0.17.0"
bytes = "~1.10.1"
hex = "~0.4.3"
sha2 = "~0.10.8"
opentelemetry_sdk = { version = "~0.24.1", default-features = false, features = [
"metrics",
] }
tracing-subscriber = { version = "~0.3.20", features = [
"json",
"env-filter",
"time",
] }