| 1 | [package] |
| 2 | name = "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. |
| 9 | version = "0.3.3" |
| 10 | authors = ["Tower Maintainers <team@tower-rs.com>" ] |
| 11 | license = "MIT" |
| 12 | readme = "README.md" |
| 13 | repository = "https://github.com/tower-rs/tower" |
| 14 | homepage = "https://github.com/tower-rs/tower" |
| 15 | documentation = "https://docs.rs/tower-layer/0.3.3" |
| 16 | description = "" " |
| 17 | Decorates a `Service` to allow easy composition between `Service`s. |
| 18 | " "" |
| 19 | categories = ["asynchronous" , "network-programming" ] |
| 20 | edition = "2018" |
| 21 | |
| 22 | [dependencies] |
| 23 | |
| 24 | [dev-dependencies] |
| 25 | tower-service = { path = "../tower-service" } |
| 26 | tower = { path = "../tower" } |
| 27 | |