tower/tower-discover/Cargo.toml

28 lines
741 B
TOML
Raw Normal View History

[package]
name = "tower-discover"
# When releasing to crates.io:
# - Remove path dependencies
# - Update html_root_url.
# - Update doc url
# - Cargo.toml
# - README.md
# - Update CHANGELOG.md.
# - Create "v0.1.x" git tag.
version = "0.3.0"
authors = ["Tower Maintainers <team@tower-rs.com>"]
2019-04-09 10:59:30 -07:00
license = "MIT"
2019-04-26 22:31:07 -07:00
readme = "README.md"
repository = "https://github.com/tower-rs/tower"
homepage = "https://github.com/tower-rs/tower"
documentation = "https://docs.rs/tower-discover/0.3.0"
2019-04-26 22:31:07 -07:00
description = """
Abstracts over service discovery strategies.
"""
categories = ["asynchronous", "network-programming"]
2019-04-08 20:11:09 -07:00
edition = "2018"
[dependencies]
futures-core = "0.3"
tower-service = { version = "0.3", path = "../tower-service" }
2019-09-30 11:58:27 -07:00
pin-project = "0.4"