forked from informalsystems/hermes
-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathCargo.toml
30 lines (27 loc) · 886 Bytes
/
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
[package]
name = "ibc-telemetry"
version = "0.17.0"
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
keywords = ["cosmos", "ibc", "relayer", "telemetry"]
repository = "https://github.com/informalsystems/ibc-rs"
authors = ["Informal Systems <hello@informal.systems>"]
rust-version = "1.60"
description = """
Telemetry service for the Hermes IBC relayer
"""
[dependencies]
ibc = { version = "0.17.0", path = "../modules" }
crossbeam-channel = "0.5.5"
once_cell = "1.13.0"
opentelemetry = "0.17.0"
opentelemetry-prometheus = "0.10.0"
prometheus = "0.13.0"
rouille = "3.5.0"
moka = "0.9.1"
uuid = { version = "1.1.2", features = ["v4"] }
dashmap = "5.3.4"
[dependencies.tendermint]
version = "=0.23.8"
default-features = false