-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix lints * chore: Release * Remove the "release crates" job (#9119)
- Loading branch information
Showing
24 changed files
with
114 additions
and
317 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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
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
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-batch-control" | ||
version = "0.2.41-beta.19" | ||
version = "0.2.41-beta.20" | ||
authors = ["Zcash Foundation <[email protected]>", "Tower Maintainers <[email protected]>"] | ||
description = "Tower middleware for batch request processing" | ||
# # Legal | ||
|
@@ -43,10 +43,10 @@ rand = "0.8.5" | |
|
||
tokio = { version = "1.42.0", features = ["full", "tracing", "test-util"] } | ||
tokio-test = "0.4.4" | ||
tower-fallback = { path = "../tower-fallback/", version = "0.2.41-beta.19" } | ||
tower-fallback = { path = "../tower-fallback/", version = "0.2.41-beta.20" } | ||
tower-test = "0.4.0" | ||
|
||
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.43" } | ||
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.44" } | ||
|
||
[lints.rust] | ||
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tokio_unstable)'] } |
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-fallback" | ||
version = "0.2.41-beta.19" | ||
version = "0.2.41-beta.20" | ||
authors = ["Zcash Foundation <[email protected]>"] | ||
description = "A Tower service combinator that sends requests to a first service, then retries processing on a second fallback service if the first service errors." | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -24,4 +24,4 @@ tracing = "0.1.41" | |
[dev-dependencies] | ||
tokio = { version = "1.42.0", features = ["full", "tracing", "test-util"] } | ||
|
||
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.43" } | ||
zebra-test = { path = "../zebra-test/", version = "1.0.0-beta.44" } |
Oops, something went wrong.