[package] name = "tower-balance" # When releasing to crates.io: # - Remove path dependencies # - Update html_root_url. # - Update doc url # - Cargo.toml # - README.md # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. version = "0.3.0-alpha.1" authors = ["Tower Maintainers "] 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.1" description = """ Balance load across a set of uniform services. """ categories = ["asynchronous", "network-programming"] edition = "2018" publish = false [features] log = ["tracing/log"] default = ["log"] [dependencies] futures-util-preview = "=0.3.0-alpha.18" futures-core-preview = "=0.3.0-alpha.18" pin-project = "=0.4.0-alpha.11" indexmap = "1.0.2" tracing = "0.1" rand = "0.6.5" tokio-sync = "=0.2.0-alpha.4" tokio-timer = "=0.3.0-alpha.4" tower-discover = { version = "=0.3.0-alpha.1", path = "../tower-discover" } tower-layer = { version = "=0.3.0-alpha.1", path = "../tower-layer" } tower-load = { version = "=0.3.0-alpha.1", path = "../tower-load" } tower-service = "=0.3.0-alpha.1" tower-make = { version = "=0.3.0-alpha.1", 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.4" tokio-executor = "=0.2.0-alpha.4" tokio-test = "=0.2.0-alpha.4" tower-buffer = { version = "=0.3.0-alpha.1", path = "../tower-buffer" } tower-limit = { version = "=0.3.0-alpha.1", path = "../tower-limit" } tower-test = { version = "=0.3.0-alpha.1", path = "../tower-test" } tower = { version = "=0.3.0-alpha.1", path = "../tower" }