| [package] |
| name = "tower-layer" |
| # When releasing to crates.io: |
| # - Update doc url |
| # - Cargo.toml |
| # - README.md |
| # - Update CHANGELOG.md. |
| # - Create "v0.1.x" git tag. |
| version = "0.3.2" |
| authors = ["Tower Maintainers <[email protected]>"] |
| license = "MIT" |
| readme = "README.md" |
| repository = "https://github.com/tower-rs/tower" |
| homepage = "https://github.com/tower-rs/tower" |
| description = """ |
| Decorates a `Service` to allow easy composition between `Service`s. |
| """ |
| categories = ["asynchronous", "network-programming"] |
| edition = "2018" |
| |
| [dependencies] |
| |
| [dev-dependencies] |
| tower-service = { version = "0.3.0", path = "../tower-service" } |
| tower = { version = "0.4", path = "../tower" } |