-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
98 lines (86 loc) · 2.79 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[package]
name = "ibc-relayer"
version = "0.9.0"
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
keywords = ["blockchain", "consensus", "cosmos", "ibc", "tendermint"]
repository = "https://github.com/informalsystems/ibc-rs"
authors = ["Informal Systems <[email protected]>"]
rust-version = "1.56"
description = """
Implementation of an IBC Relayer in Rust, as a library
"""
[package.metadata.docs.rs]
all-features = true
[features]
default = ["flex-error/std", "flex-error/eyre_tracer"]
profiling = []
telemetry = ["ibc-telemetry"]
[dependencies]
ibc = { version = "0.9.0", path = "../modules" }
ibc-proto = { version = "0.13.0", path = "../proto" }
ibc-telemetry = { version = "0.9.0", path = "../telemetry", optional = true }
chrono = { version = "0.4.19", default-features = false, features = ["clock"] }
subtle-encoding = "0.5"
async-trait = "0.1.50"
humantime-serde = "1.0.0"
serde = "1.0"
serde_derive = "1.0"
thiserror = "1.0.30"
toml = "0.5"
tracing = "0.1.29"
tokio = { version = "1.0", features = ["rt-multi-thread", "time", "sync"] }
serde_json = { version = "1" }
bytes = "1.1.0"
prost = { version = "0.9" }
prost-types = { version = "0.9" }
futures = "0.3.17"
crossbeam-channel = "0.5.1"
k256 = { version = "0.9.6", features = ["ecdsa-core", "ecdsa", "sha256"]}
hex = "0.4"
bitcoin = { version = "=0.27", features = ["use-serde"] }
tiny-bip39 = "0.8.0"
hdpath = { version = "0.6.0", features = ["with-bitcoin"] }
sha2 = "0.9.8"
tiny-keccak = { version = "2.0.2", features = ["keccak"], default-features = false }
ripemd160 = "0.9.1"
bech32 = "0.8.1"
itertools = "0.10.1"
tonic = { version = "0.6", features = ["tls", "tls-roots"] }
dirs-next = "2.0.0"
retry = { version = "1.3.0", default-features = false }
async-stream = "0.3.2"
http = "0.2.4"
flex-error = { version = "0.4.4", default-features = false }
signature = "1.3.0"
anyhow = "1.0"
semver = "1.0"
uint = "0.9"
humantime = "2.1.0"
[dependencies.num-bigint]
version = "0.4"
features = ["serde"]
[dependencies.num-rational]
version = "0.4.0"
features = ["num-bigint", "serde"]
[dependencies.tendermint]
version = "=0.23.1"
features = ["secp256k1"]
[dependencies.tendermint-rpc]
version = "=0.23.1"
features = ["http-client", "websocket-client"]
[dependencies.tendermint-light-client]
version = "=0.23.1"
default-features = false
features = ["rpc-client", "secp256k1", "unstable"]
[dependencies.tendermint-proto]
version = "=0.23.1"
[dev-dependencies]
ibc = { version = "0.9.0", path = "../modules", features = ["mocks"] }
serial_test = "0.5.0"
env_logger = "0.9.0"
tracing-subscriber = { version = "0.3.2", features = ["fmt", "env-filter", "json"] }
test-log = { version = "0.2.8", features = ["trace"] }
# Needed for generating (synthetic) light blocks.
tendermint-testgen = { version = "=0.23.1" }