forked from informalsystems/hermes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (41 loc) · 1.34 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
[package]
name = "ibc-test-framework"
version = "0.25.0"
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]>"]
description = """
Framework for writing integration tests for IBC relayers
"""
[dependencies]
ibc-relayer-types = { version = "=0.25.0", path = "../../crates/relayer-types" }
ibc-relayer = { version = "=0.25.0", path = "../../crates/relayer" }
ibc-relayer-cli = { version = "=1.6.0", path = "../../crates/relayer-cli" }
ibc-proto = { version = "0.34.0", features = ["serde"] }
tendermint-rpc = { version = "0.33.0", features = ["http-client", "websocket-client"] }
http = "0.2.9"
tokio = { version = "1.0", features = ["full"] }
tracing = "0.1.36"
tracing-subscriber = "0.3.14"
eyre = "0.6.8"
color-eyre = "0.6"
rand = "0.8.5"
hex = "0.4.3"
serde = "1.0"
serde_json = "1"
serde_yaml = "0.9.16"
itertools = "0.10"
toml = "0.7"
subtle-encoding = "0.5.1"
sha2 = "0.10.6"
crossbeam-channel = "0.5.8"
semver = "1.0.16"
flex-error = "0.4.4"
prost = { version = "0.11" }
tonic = { version = "0.9", features = ["tls", "tls-roots"] }
hdpath = "0.6.3"
once_cell = "1.18.0"