-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (30 loc) · 1.16 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
[package]
name = "namada-monitoring"
version = "0.1.0"
edition = "2021"
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.4.2", features = ["derive", "env"] }
clap-verbosity-flag = "2.1.1"
namada_sdk = { version = "0.47.1", default-features = false, features = ["std", "async-send", "download-params"] }
tendermint-config = "0.40.1"
tendermint-rpc = { version = "0.40.1", features = ["http-client"] }
tokio = {version = "1.8.2", default-features = false}
async-trait = "0.1.74"
reqwest = { version = "0.11.22", features = ["json"] }
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
futures = "0.3.30"
tracing = { version = "0.1.40" }
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
chrono = "0.4.38"
anyhow = "1.0.95"
lru = "0.12.5"
bimap = { version = "0.6.3", features = ["serde"] }
prometheus_exporter = "0.8.5"
subtle-encoding = "0.5.1"
thiserror = "1.0.56"
tokio-retry2 = { version = "0.5", features = ["jitter", "tracing"] }
[build-dependencies]
vergen = { version = "8.0.0", features = ["build", "git", "gitcl"] }