forked from informalsystems/hermes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
67 lines (62 loc) · 2.95 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[package]
name = "ibc-relayer-cli"
version = "1.8.2"
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
keywords = ["blockchain", "consensus", "cosmos", "ibc", "tendermint"]
homepage = "https://hermes.informal.systems/"
repository = "https://github.com/informalsystems/hermes"
authors = ["Informal Systems <[email protected]>"]
rust-version = "1.77.1"
description = """
Hermes is an IBC Relayer written in Rust
"""
default-run = "hermes"
[[bin]]
name = "hermes"
[features]
default = ["telemetry", "rest-server", "std", "eyre_tracer"]
std = ["flex-error/std"]
eyre_tracer = ["flex-error/eyre_tracer"]
telemetry = ["ibc-relayer/telemetry", "ibc-telemetry"]
rest-server = ["ibc-relayer-rest"]
[dependencies]
ibc-relayer-types = { workspace = true }
ibc-relayer = { workspace = true }
ibc-telemetry = { workspace = true, optional = true }
ibc-relayer-rest = { workspace = true, optional = true }
ibc-chain-registry = { workspace = true }
abscissa_core = { workspace = true, features = ["options"] }
clap = { workspace = true, features = ["cargo"] }
clap_complete = { workspace = true }
color-eyre = { workspace = true }
console = { workspace = true }
crossbeam-channel = { workspace = true }
dialoguer = { workspace = true }
dirs-next = { workspace = true }
eyre = { workspace = true }
flex-error = { workspace = true, features = ["std", "eyre_tracer"] }
futures = { workspace = true }
hdpath = { workspace = true }
http = { workspace = true }
humantime = { workspace = true }
itertools = { workspace = true }
oneline-eyre = { workspace = true }
regex = { workspace = true }
serde = { workspace = true, features = ["serde_derive"] }
serde_json = { workspace = true }
signal-hook = { workspace = true }
subtle-encoding = { workspace = true }
tendermint-light-client-verifier = { workspace = true }
tendermint-rpc = { workspace = true, features = ["http-client", "websocket-client"] }
tendermint = { workspace = true, features = ["secp256k1"] }
time = { workspace = true }
tokio = { workspace = true, features = ["full"] }
tracing = { workspace = true }
tracing-subscriber = { workspace = true, features = ["fmt", "env-filter", "json"] }
[dev-dependencies]
abscissa_core = { workspace = true, features = ["testing"] }
once_cell = { workspace = true }
regex = { workspace = true }
serial_test = { workspace = true }