mirror of
https://github.com/Noratrieb/101844-repro.git
synced 2026-01-14 14:25:02 +01:00
28 lines
780 B
TOML
28 lines
780 B
TOML
[package]
|
|
name = "tower-service"
|
|
# When releasing to crates.io:
|
|
# - Update doc url
|
|
# - Cargo.toml
|
|
# - README.md
|
|
# - Update CHANGELOG.md.
|
|
# - Create "v0.3.x" git tag.
|
|
version = "0.3.2"
|
|
authors = ["Tower Maintainers <team@tower-rs.com>"]
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
repository = "https://github.com/tower-rs/tower"
|
|
homepage = "https://github.com/tower-rs/tower"
|
|
documentation = "https://docs.rs/tower-service/0.3.2"
|
|
description = """
|
|
Trait representing an asynchronous, request / response based, client or server.
|
|
"""
|
|
categories = ["asynchronous", "network-programming"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
|
|
[dev-dependencies]
|
|
http = "0.2"
|
|
tower-layer = { version = "0.3", path = "../tower-layer" }
|
|
tokio = { version = "1", features = ["macros", "time"] }
|
|
futures = "0.3"
|