-
Notifications
You must be signed in to change notification settings - Fork 328
/
Cargo.toml
29 lines (27 loc) · 1.07 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
[package]
name = "ibc-telemetry"
version = "0.29.3"
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.76.0"
description = """
Telemetry service for the Hermes IBC relayer
"""
[dependencies]
ibc-relayer-types = { workspace = true }
axum = { workspace = true }
dashmap = { workspace = true }
moka = { workspace = true, features = ["sync"] }
once_cell = { workspace = true }
opentelemetry = { workspace = true, features = ["metrics"] }
opentelemetry-prometheus = { workspace = true }
prometheus = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
tendermint = { workspace = true }
tokio = { workspace = true }
tracing = { workspace = true }