tower/tower-timeout/Cargo.toml

31 lines
852 B
TOML

[package]
name = "tower-timeout"
# 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"
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-timeout/0.3.0"
description = """
Apply a timeout to requests, ensuring completion within a fixed time duration.
"""
categories = ["asynchronous", "network-programming"]
edition = "2018"
[dependencies]
tokio = { version = "0.2", features = ["time", "test-util"] }
tokio-test = "0.2"
tower-service = "0.3"
tower-layer = "0.3"
tower-test = { path = "../tower-test" }
pin-project = "0.4"