forked from informalsystems/hermes
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
28 lines (26 loc) · 1020 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
[package]
name = "ibc-chain-registry"
version = "0.26.3"
edition = "2021"
license = "Apache-2.0"
keywords = ["cosmos", "ibc", "relayer", "chain", "registry"]
repository = "https://github.com/informalsystems/hermes"
authors = ["Informal Systems <hello@informal.systems>"]
rust-version = "1.70"
description = """
Service to fetch data from the chain-registry
"""
[dependencies]
ibc-relayer-types = { version = "0.26.3", path = "../relayer-types" }
ibc-proto = { version = "0.38.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", "json"], default-features = false }
serde = "1.0.166"
serde_json = "1"
tokio = "1.17.0"
tracing = "0.1.36"