1 | [package] |
2 | name = "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. |
9 | version = "0.3.2" |
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-service/0.3.2" |
16 | description = "" " |
17 | Trait representing an asynchronous, request / response based, client or server. |
18 | " "" |
19 | categories = ["asynchronous" , "network-programming" ] |
20 | edition = "2018" |
21 | |
22 | [dependencies] |
23 | |
24 | [dev-dependencies] |
25 | http = "0.2" |
26 | tower-layer = { version = "0.3" , path = "../tower-layer" } |
27 | tokio = { version = "1" , features = ["macros" , "time" ] } |
28 | futures = "0.3" |
29 | |