forked from informalsystems/hermes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
28 lines (26 loc) · 1.01 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
[package]
name = "ibc-chain-registry"
version = "0.27.1"
edition = "2021"
license = "Apache-2.0"
keywords = ["cosmos", "ibc", "relayer", "chain", "registry"]
repository = "https://github.com/informalsystems/hermes"
authors = ["Informal Systems <[email protected]>"]
rust-version = "1.71"
description = """
Service to fetch data from the chain-registry
"""
[dependencies]
ibc-relayer-types = { version = "0.27.1", path = "../relayer-types" }
ibc-proto = { version = "0.42.0", features = ["serde"] }
tendermint-rpc = { version = "0.34.0", features = ["http-client", "websocket-client"] }
async-trait = "0.1.72"
flex-error = { version = "0.4.4", default-features = false }
futures = { version = "0.3.27", features = ["executor"] }
http = "0.2"
itertools = "0.10.5"
reqwest = { version = "0.11.13", features = ["rustls-tls-native-roots", "json"], default-features = false }
serde = "1.0.195"
serde_json = "1"
tokio = "1.17.0"
tracing = "0.1.36"