-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
53 lines (48 loc) · 1.29 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
[package]
name = "cosmon"
version = "0.0.0"
description = """
Observability tool for Cosmos and other Tendermint applications
"""
authors = [
"Tony Arcieri <[email protected]>",
"Shella Stephens <[email protected]>"
]
license = "Apache-2.0"
repository = "https://github.com/iqlusioninc/cosmon"
readme = "README.md"
edition = "2018"
categories = ["cryptography::cryptocurrencies"]
keywords = ["cosmos", "tendermint"]
[dependencies]
abscissa_core = "0.7"
abscissa_tokio = "0.7"
clap = "4"
chrono = { version = "0.4", features = ["serde"] }
datadog = { git = "https://github.com/iqlusioninc/crates" }
futures = "0.3"
eyre = "0.6"
hostname = "0.3"
home = "0.5"
iqhttp = { version = "0.2", features = ["json"] }
serde = { version = "1", features = ["serde_derive"] }
serde_json = { version = "1" }
tendermint = "=0.28.0"
tendermint-config = "=0.28.0"
tendermint-rpc = { version = "=0.28.0", features = ["http-client"] }
tower = { version = "0.4", features = ["buffer", "util"] }
reqwest = "0.11"
thiserror = "1"
toml = "0.5"
tokio = "1"
url = "2"
warp = "0.3"
# optional dependencies
mintscan = { git = "https://github.com/iqlusioninc/crates", optional = true }
[dev-dependencies]
once_cell = "1"
[dev-dependencies.abscissa_core]
version = "0.7"
features = ["testing"]
[features]
default = ["mintscan"]