forked from informalsystems/hermes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
77 lines (66 loc) · 2.09 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
68
69
70
71
72
73
74
75
76
77
[package]
name = "ibc-relayer-cli"
version = "0.7.3"
edition = "2018"
license = "Apache-2.0"
readme = "README.md"
keywords = ["blockchain", "consensus", "cosmos", "ibc", "tendermint"]
homepage = "https://hermes.informal.systems/"
repository = "https://github.com/informalsystems/ibc-rs"
authors = ["Informal Systems <[email protected]>"]
description = """
Hermes is an IBC Relayer written in Rust.
"""
[[bin]]
name = "hermes"
[features]
default = ["telemetry", "rest-server", "std", "eyre_tracer",]
std = ["flex-error/std"]
eyre_tracer = ["flex-error/eyre_tracer"]
profiling = ["ibc-relayer/profiling"]
telemetry = ["ibc-relayer/telemetry", "ibc-telemetry"]
rest-server = ["ibc-relayer-rest"]
[dependencies]
ibc = { version = "0.7.3", path = "../modules" }
ibc-relayer = { version = "0.7.3", path = "../relayer" }
ibc-proto = { version = "0.11.0", path = "../proto" }
ibc-telemetry = { version = "0.7.3", path = "../telemetry", optional = true }
ibc-relayer-rest = { version = "0.7.3", path = "../relayer-rest", optional = true }
gumdrop = { version = "0.7", features = ["default_expr"] }
serde = { version = "1", features = ["serde_derive"] }
tokio = { version = "1.0", features = ["full"] }
tracing = "0.1.29"
tracing-subscriber = "0.2.25"
eyre = "0.6.5"
color-eyre = "0.5"
futures = "0.3.17"
toml = "0.5.8"
serde_derive = "1.0.116"
serde_json = "1"
prost = "0.7"
prost-types = "0.7"
hex = "0.4"
crossbeam-channel = "0.5.1"
subtle-encoding = "0.5"
dirs-next = "2.0.0"
itertools = "0.10.1"
atty = "0.2.14"
flex-error = { version = "0.4.3", default-features = false }
signal-hook = "0.3.10"
[dependencies.tendermint-proto]
version = "=0.22.0"
[dependencies.tendermint]
version = "=0.22.0"
features = ["secp256k1"]
[dependencies.tendermint-rpc]
version = "=0.22.0"
features = ["http-client", "websocket-client"]
[dependencies.tendermint-light-client]
version = "=0.22.0"
features = ["unstable"]
[dependencies.abscissa_core]
version = "0.5.2"
[dev-dependencies]
abscissa_core = { version = "0.5.2", features = ["testing"] }
once_cell = "1.8"
regex = "1"