-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bumps tower to v0.5 to match the rest of the ecosystem (tonic, axum).
- Loading branch information
1 parent
1dd1e47
commit 0e57406
Showing
1 changed file
with
5 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "tower-abci" | ||
version = "0.18.0" | ||
version = "0.19.0" | ||
authors = [ | ||
"Penumbra Labs <[email protected]>", | ||
"Henry de Valence <[email protected]" | ||
|
@@ -17,17 +17,19 @@ documentation = "https://docs.rs/tower-abci" | |
tendermint-proto = "0.40" | ||
tendermint = "0.40" | ||
bytes = "1" | ||
tokio = { version = "1", features = ["full"]} | ||
tokio = { version = "1", features = ["io-util", "macros", "net", "rt"] } | ||
tokio-util = { version = "0.6", features = ["codec"] } | ||
tokio-stream = "0.1" | ||
tower = { version = "0.4", features = ["full"]} | ||
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] | ||
|