forked from informalsystems/hermes
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
32 lines (29 loc) · 1.02 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
[package]
name = "ibc-telemetry"
version = "0.26.4"
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
keywords = ["cosmos", "ibc", "relayer", "telemetry"]
repository = "https://github.com/informalsystems/hermes"
authors = ["Informal Systems <[email protected]>"]
rust-version = "1.71"
description = """
Telemetry service for the Hermes IBC relayer
"""
[dependencies]
ibc-relayer-types = { version = "0.26.4", path = "../relayer-types" }
once_cell = "1.19.0"
opentelemetry = { version = "0.19.0", features = ["metrics"] }
opentelemetry-prometheus = "0.12.0"
prometheus = "0.13.2"
moka = { version = "0.12.0", features = ["sync"] }
dashmap = "5.4.0"
serde_json = "1.0.94"
serde = "1.0.195"
axum = "0.6.18"
tokio = "1.26.0"
tracing = "0.1.36"
[dependencies.tendermint]
version = "0.34.0"
default-features = false