tower/tower-service/Cargo.toml

23 lines
615 B
TOML
Raw Normal View History

[package]
name = "tower-service"
2018-08-09 10:08:57 -07:00
# When releasing to crates.io:
# - Update html_root_url.
# - Update CHANGELOG.md.
# - Update documentation URL
2018-12-12 13:14:05 -08:00
# - Create "v0.x.y" git tag.
version = "0.2.0"
authors = ["Carl Lerche <me@carllerche.com>"]
2018-08-09 10:08:57 -07:00
license = "MIT"
readme = "README.md"
repository = "https://github.com/tower-rs/tower"
homepage = "https://github.com/tower-rs/tower"
2018-12-12 13:14:05 -08:00
documentation = "https://docs.rs/tokio-service/0.2.0"
description = """
2018-08-09 10:08:57 -07:00
Trait representing an asynchronous, request / response based, client or server.
"""
2018-08-09 10:08:57 -07:00
categories = ["asynchronous", "network-programming"]
[dependencies]
2018-08-09 10:08:57 -07:00
futures = "0.1.23"