1[package] 2name = "tower-service" 3# When releasing to crates.io: 4# - Remove path dependencies 5# - Update html_root_url. 6# - Update doc url 7# - Cargo.toml 8# - README.md 9# - Update CHANGELOG.md. 10# - Create "v0.2.x" git tag. 11version = "0.3.1" 12authors = ["Tower Maintainers <team@tower-rs.com>"] 13license = "MIT" 14readme = "README.md" 15repository = "https://github.com/tower-rs/tower" 16homepage = "https://github.com/tower-rs/tower" 17documentation = "https://docs.rs/tower-service/0.3.1" 18description = """ 19Trait representing an asynchronous, request / response based, client or server. 20""" 21categories = ["asynchronous", "network-programming"] 22edition = "2018" 23 24[dependencies] 25 26[dev-dependencies] 27http = "0.2" 28tower-layer = { version = "0.3", path = "../tower-layer" } 29tokio = { version = "1" } 30futures = "0.3" 31