-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathCargo.toml
37 lines (33 loc) · 1.04 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
[package]
name = "tower-abci"
version = "0.19.1"
authors = [
"Penumbra Labs <[email protected]>",
"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.40"
tendermint = "0.40"
bytes = "1"
tokio = { version = "1", features = ["io-util", "macros", "net", "rt"] }
tokio-util = { version = "0.7", features = ["codec"] }
tokio-stream = "0.1"
tower = { version = "0.5", features = ["util"] }
pin-project = "1"
futures = "0.3"
tracing = "0.1"
prost = "0.13"
[dev-dependencies]
structopt = "0.3"
tokio = { version = "1", features = ["rt-multi-thread"] }
tower = {version = "0.5", features = ["buffer", "limit", "load-shed"] }
tracing-subscriber = "0.3.17"
[features]
doc = []