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.2"
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.77.1"
description = """
Service to fetch data from the chain-registry
"""
[dependencies]
ibc-relayer-types = { workspace = true }
ibc-proto = { workspace = true, features = ["serde"] }
tendermint-rpc = { workspace = true, features = ["http-client", "websocket-client"] }
async-trait = { workspace = true }
flex-error = { workspace = true }
futures = { workspace = true, features = ["executor"] }
http = { workspace = true }
itertools = { workspace = true }
reqwest = { workspace = true, features = ["rustls-tls-native-roots", "json"] }
serde = { workspace = true }
serde_json = { workspace = true }
tokio = { workspace = true }
tracing = { workspace = true }