1[package]
2name = "tower-layer"
3# When releasing to crates.io:
4# - Update doc url
5# - Cargo.toml
6# - README.md
7# - Update CHANGELOG.md.
8# - Create "v0.1.x" git tag.
9version = "0.3.3"
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-layer/0.3.3"
16description = """
17Decorates a `Service` to allow easy composition between `Service`s.
18"""
19categories = ["asynchronous", "network-programming"]
20edition = "2018"
21
22[dependencies]
23
24[dev-dependencies]
25tower-service = { path = "../tower-service" }
26tower = { path = "../tower" }
27