tower 0.3.1

Tower is a library of modular and reusable components for building robust clients and servers.
Documentation
[package]
name = "tower"
# 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.1"
authors = ["Tower Maintainers <team@tower-rs.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/tower-rs/tower"
homepage = "https://github.com/tower-rs/tower"
documentation = "https://docs.rs/tower/0.3.1"
description = """
Tower is a library of modular and reusable components for building robust
clients and servers.
"""
categories = ["asynchronous", "network-programming"]
keywords = ["io", "async", "non-blocking", "futures", "service"]
edition = "2018"

[features]
default = ["full", "log"]
full = []
log = ["tower-buffer/log"]

[dependencies]
tower-buffer = { version = "0.3", path = "../tower-buffer", default-features = false }
tower-discover = { version = "0.3", path = "../tower-discover" }
tower-layer = "0.3"
tower-limit = { version = "0.3", path = "../tower-limit" }
tower-load-shed = { version = "0.3", path = "../tower-load-shed" }
tower-retry = { version = "0.3", path = "../tower-retry" }
tower-service = "0.3"
tower-timeout = { version = "0.3", path = "../tower-timeout" }
tower-util = { version = "0.3", path = "../tower-util", features = ["call-all"] }
futures-core = { version = "0.3", default-features = false }

[dev-dependencies]
# env_logger = { version = "0.5.3", default-features = false }
futures-util = { version = "0.3", default-features = false }
tokio = { version = "0.2", features = ["macros"] }
# log = "0.4.1"
# # tokio = "0.2"
tower-test = { version = "0.3", path = "../tower-test" }