forked from bnb-chain/bsc-tendermint-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
71 lines (66 loc) · 1.9 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
[package]
name = "tendermint-rpc"
version = "0.17.0"
edition = "2018"
license = "Apache-2.0"
homepage = "https://www.tendermint.com/"
repository = "https://github.com/informalsystems/tendermint-rs"
readme = "README.md"
authors = [
"Sean Braithwaite <[email protected]>",
"Ethan Buchman <[email protected]>",
"Ismail Khoffi <[email protected]>",
"Romain Ruetschi <[email protected]>",
"Alexander Simmerl <[email protected]>",
]
description = """
tendermint-rpc contains the core types returned by a Tendermint node's RPC endpoint.
All networking related features are feature guarded to keep the dependencies small in
cases where only the core types are needed.
"""
[package.metadata.docs.rs]
all-features = true
[features]
default = []
http-client = [
"async-trait",
"futures",
"http",
"hyper",
"tokio/fs",
"tokio/macros",
"tracing"
]
secp256k1 = [ "tendermint/secp256k1" ]
websocket-client = [
"async-trait",
"async-tungstenite",
"futures",
"tokio/fs",
"tokio/macros",
"tokio/stream",
"tokio/sync",
"tokio/time",
"tracing"
]
[dependencies]
bytes = "0.5"
chrono = "0.4"
getrandom = "0.1"
serde = { version = "1", features = [ "derive" ] }
serde_bytes = "0.11"
serde_json = "1"
tendermint = { version = "0.17.0", path = "../tendermint" }
tendermint-proto = { version = "0.17.0", path = "../proto" }
thiserror = "1"
uuid = { version = "0.8", default-features = false }
subtle-encoding = { version = "0.5", features = ["bech32-preview"] }
walkdir = "2.3"
async-trait = { version = "0.1", optional = true }
async-tungstenite = { version = "0.9", features = ["tokio-runtime"], optional = true }
futures = { version = "0.3", optional = true }
http = { version = "0.2", optional = true }
hyper = { version = "0.13", optional = true }
tokio = { version = "0.2", optional = true }
tracing = { version = "0.1", optional = true }
pin-project = "1.0.1"