-
Notifications
You must be signed in to change notification settings - Fork 329
/
Cargo.toml
90 lines (84 loc) · 4.6 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
[package]
name = "ibc-relayer"
version = "0.29.3"
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
keywords = ["blockchain", "consensus", "cosmos", "ibc", "tendermint"]
repository = "https://github.com/informalsystems/hermes"
authors = ["Informal Systems <[email protected]>"]
rust-version = "1.76.0"
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"]
[dependencies]
ibc-proto = { workspace = true, features = ["serde"] }
ibc-telemetry = { workspace = true }
ibc-relayer-types = { workspace = true, features = ["clock"] }
anyhow = { workspace = true }
async-stream = { workspace = true }
bech32 = { workspace = true }
bitcoin = { workspace = true, features = ["serde"] }
bs58 = { workspace = true }
byte-unit = { workspace = true, features = ["serde"] }
bytes = { workspace = true }
crossbeam-channel = { workspace = true }
digest = { workspace = true }
dirs-next = { workspace = true }
ed25519 = { workspace = true }
ed25519-dalek = { workspace = true, features = ["serde"] }
ed25519-dalek-bip32 = { workspace = true }
flex-error = { workspace = true }
futures = { workspace = true }
generic-array = { workspace = true }
hdpath = { workspace = true }
hex = { workspace = true }
http = { workspace = true }
humantime = { workspace = true }
humantime-serde = { workspace = true }
itertools = { workspace = true }
moka = { workspace = true, features = ["sync"] }
num-bigint = { workspace = true, features = ["serde"] }
num-rational = { workspace = true, features = ["num-bigint", "serde"] }
once_cell = { workspace = true }
prost = { workspace = true }
regex = { workspace = true }
reqwest = { workspace = true, features = ["rustls-tls-native-roots", "json"] }
retry = { workspace = true }
ripemd = { workspace = true }
secp256k1 = { workspace = true, features = ["rand-std"] }
semver = { workspace = true }
serde = { workspace = true }
serde_derive = { workspace = true }
serde_json = { workspace = true }
sha2 = { workspace = true }
signature = { workspace = true }
strum = { workspace = true, features = ["derive"] }
subtle-encoding = { workspace = true }
tendermint = { workspace = true, features = ["secp256k1"] }
tendermint-light-client = { workspace = true, features = ["rpc-client", "secp256k1", "unstable"] }
tendermint-light-client-detector = { workspace = true }
tendermint-light-client-verifier = { workspace = true }
tendermint-proto = { workspace = true }
tendermint-rpc = { workspace = true, features = ["http-client", "websocket-client"] }
thiserror = { workspace = true }
tiny-bip39 = { workspace = true }
tiny-keccak = { workspace = true, features = ["keccak"] }
tokio = { workspace = true, features = ["rt-multi-thread", "time", "sync"] }
tokio-stream = { workspace = true }
toml = { workspace = true }
tonic = { workspace = true, features = ["tls", "tls-roots"] }
tracing = { workspace = true }
tracing-subscriber = { workspace = true, features = ["fmt", "env-filter", "json"] }
uuid = { workspace = true, features = ["v4"] }
[dev-dependencies]
ibc-relayer-types = { workspace = true }
serial_test = { workspace = true }
env_logger = { workspace = true }
test-log = { workspace = true, features = ["trace"] }
# Needed for generating (synthetic) light blocks.
tendermint-testgen = { workspace = true }