tower/tower/Cargo.toml

48 lines
1.7 KiB
TOML
Raw Normal View History

2019-03-06 07:54:39 -08:00
[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.0-alpha.2"
authors = ["Tower Maintainers <team@tower-rs.com>"]
2019-03-06 07:54:39 -08:00
license = "MIT"
readme = "README.md"
repository = "https://github.com/tower-rs/tower"
2019-04-26 22:31:07 -07:00
homepage = "https://github.com/tower-rs/tower"
documentation = "https://docs.rs/tower/0.3.0-alpha.2"
2019-03-06 07:54:39 -08:00
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"]
2019-04-08 20:11:09 -07:00
edition = "2018"
2019-03-06 07:54:39 -08:00
[features]
default = ["full"]
full = []
2019-03-15 10:53:19 -07:00
[dependencies]
tower-buffer = { version = "=0.3.0-alpha.2", path = "../tower-buffer" }
tower-discover = { version = "=0.3.0-alpha.2", path = "../tower-discover" }
tower-layer = { version = "=0.3.0-alpha.2", path = "../tower-layer" }
tower-limit = { version = "=0.3.0-alpha.2", path = "../tower-limit" }
tower-load-shed = { version = "=0.3.0-alpha.2", path = "../tower-load-shed" }
tower-retry = { version = "=0.3.0-alpha.2", path = "../tower-retry" }
tower-service = { version = "=0.3.0-alpha.2", path = "../tower-service" }
tower-timeout = { version = "=0.3.0-alpha.2", path = "../tower-timeout" }
tower-util = { version = "=0.3.0-alpha.2", path = "../tower-util" }
futures-core-preview = "=0.3.0-alpha.19"
2019-03-15 10:53:19 -07:00
2019-03-06 07:54:39 -08:00
[dev-dependencies]
env_logger = { version = "0.5.3", default-features = false }
futures-util-preview = "=0.3.0-alpha.19"
log = "0.4.1"
tokio = "=0.2.0-alpha.6"
tower-test = { version = "=0.3.0-alpha.2", path = "../tower-test" }