tower/tower-test/Cargo.toml

31 lines
868 B
TOML
Raw Normal View History

2017-10-03 10:03:14 -07:00
[package]
name = "tower-test"
# 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-alpha.1"
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-test/0.3.0-alpha.1"
2019-04-26 22:31:07 -07:00
description = """
Utilities for writing client and server `Service` tests.
"""
categories = ["asynchronous", "network-programming"]
2019-04-08 20:11:09 -07:00
edition = "2018"
2017-10-03 10:03:14 -07:00
[dependencies]
futures-util-preview = "=0.3.0-alpha.18"
futures-executor-preview = "=0.3.0-alpha.18"
tokio-test = "=0.2.0-alpha.5"
tokio-sync = "=0.2.0-alpha.5"
tower-service = "=0.3.0-alpha.1"
2019-09-11 09:55:01 -07:00
pin-project = "=0.4.0-alpha.11"