tower/tower-util/Cargo.toml

38 lines
1.1 KiB
TOML

[package]
name = "tower-util"
# When releasing to crates.io:
# - Remove path dependencies
# - Update html_root_url.
# - Update doc url
# - Cargo.toml
# - README.md
# - Update CHANGELOG.md.
# - Create "v0.3.x" git tag.
version = "0.3.0-alpha.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-util/0.3.0-alpha.1"
description = """
Utilities for working with `Service`.
"""
categories = ["asynchronous", "network-programming"]
edition = "2018"
[dependencies]
tower-service = "=0.3.0-alpha.1"
tower-layer = { version = "=0.3.0-alpha.1", path = "../tower-layer" }
pin-project = { version = "=0.4.0-alpha.11", features = ["project_attr"] }
futures-util-preview = "=0.3.0-alpha.18"
futures-core-preview = "=0.3.0-alpha.18"
[dev-dependencies]
futures-util-preview = "=0.3.0-alpha.18"
tokio-test = "=0.2.0-alpha.4"
tokio = "=0.2.0-alpha.4"
tower = { version = "=0.3.0-alpha.1", path = "../tower" }
tower-test = { version = "=0.3.0-alpha.1", path = "../tower-test" }