forked from penumbra-zone/tower-abci
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
32 lines (28 loc) · 860 Bytes
/
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
[package]
name = "tower-abci"
version = "0.15.0"
authors = ["Henry de Valence <[email protected]>"]
edition = "2021"
license = "MIT"
description = "A `tower`-based interface to Tendermint's ABCI"
repository = "https://github.com/penumbra-zone/tower-abci"
homepage = "https://github.com/penumbra-zone/tower-abci"
documentation = "https://docs.rs/tower-abci"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tendermint-proto = "0.37"
tendermint = "0.37"
bytes = "1"
tokio = { version = "1", features = ["full"]}
tokio-util = { version = "0.6", features = ["codec"] }
tokio-stream = "0.1"
tower = { version = "0.4", features = ["full"]}
pin-project = "1"
futures = "0.3"
tracing = "0.1"
prost = "0.12"
[dev-dependencies]
structopt = "0.3"
tracing-subscriber = "0.3.17"
[features]
doc = []