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