-
Notifications
You must be signed in to change notification settings - Fork 285
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update the rest of the crates and upgrade ready cache to `std::f… (#379)
* Update hedge, filter, load, load-shed, and more * Update ready cache * Prepare release for ready-cache * fix merge * Update balance * Prepare balance release
- Loading branch information
1 parent
0d2a377
commit e2f1a49
Showing
45 changed files
with
803 additions
and
1,005 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 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 |
---|---|---|
|
@@ -8,13 +8,13 @@ name = "tower-balance" | |
# - README.md | ||
# - Update CHANGELOG.md. | ||
# - Create "v0.1.x" git tag. | ||
version = "0.3.0-alpha.2" | ||
version = "0.3.0" | ||
authors = ["Tower Maintainers <[email protected]>"] | ||
license = "MIT" | ||
readme = "README.md" | ||
repository = "https://github.com/tower-rs/tower" | ||
homepage = "https://github.com/tower-rs/tower" | ||
documentation = "https://docs.rs/tower-balance/0.3.0-alpha.2" | ||
documentation = "https://docs.rs/tower-balance/0.3.0" | ||
description = """ | ||
Balance load across a set of uniform services. | ||
""" | ||
|
@@ -26,29 +26,28 @@ log = ["tracing/log"] | |
default = ["log"] | ||
|
||
[dependencies] | ||
futures-util-preview = "=0.3.0-alpha.19" | ||
futures-core-preview = "=0.3.0-alpha.19" | ||
futures-util = "0.3" | ||
futures-core = "0.3" | ||
pin-project = "0.4" | ||
indexmap = "1.0.2" | ||
tracing = "0.1" | ||
rand = "0.6.5" | ||
tokio-sync = "=0.2.0-alpha.6" | ||
tokio-timer = "=0.3.0-alpha.6" | ||
tower-discover = { version = "=0.3.0-alpha.2", path = "../tower-discover" } | ||
tower-layer = { version = "=0.3.0-alpha.2", path = "../tower-layer" } | ||
tower-load = { version = "=0.3.0-alpha.2", path = "../tower-load" } | ||
tower-service = { version = "=0.3.0-alpha.2", path = "../tower-service" } | ||
tower-make = { version = "=0.3.0-alpha.2a", path = "../tower-make" } | ||
tokio = { version = "0.2", features = ["sync", "time"] } | ||
tower-discover = { version = "0.3", path = "../tower-discover" } | ||
tower-layer = { version = "0.3", path = "../tower-layer" } | ||
tower-load = { version = "0.3", path = "../tower-load" } | ||
tower-service = { version = "0.3", path = "../tower-service" } | ||
tower-ready-cache = { version = "0.3", path = "../tower-ready-cache" } | ||
tower-make = { version = "0.3", path = "../tower-make" } | ||
slab = "0.4" | ||
|
||
[dev-dependencies] | ||
tracing-subscriber = "0.1.1" | ||
hdrhistogram = "6.0" | ||
quickcheck = { version = "0.6", default-features = false } | ||
tokio = "=0.2.0-alpha.6" | ||
tokio-executor = "=0.2.0-alpha.6" | ||
tokio-test = "=0.2.0-alpha.6" | ||
tower-buffer = { version = "=0.3.0-alpha.2", path = "../tower-buffer" } | ||
tower-limit = { version = "=0.3.0-alpha.2", path = "../tower-limit" } | ||
tower-test = { version = "=0.3.0-alpha.2", path = "../tower-test" } | ||
tower = { version = "=0.3.0-alpha.2", path = "../tower" } | ||
tokio = { version = "0.2", features = ["macros"] } | ||
tokio-test = "0.2" | ||
tower-buffer = { version = "0.3", path = "../tower-buffer" } | ||
tower-limit = { version = "0.3", path = "../tower-limit" } | ||
tower-test = { version = "0.3", path = "../tower-test" } | ||
tower = { version = "0.3", path = "../tower" } |
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
Oops, something went wrong.