test: update tower-test to v0.4 (#512)

Signed-off-by: Eliza Weisman <eliza@buoyant.io>
This commit is contained in:
Eliza Weisman 2021-01-07 14:33:55 -08:00 committed by GitHub
parent 992702fd20
commit ca685ae943
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 5 deletions

View File

@ -1,3 +1,8 @@
# 0.4.0 (January 7, 2021)
- Updated `tokio-test` dependency to 0.4
- Updated `tokio` dependency to 1.0
# 0.3.0 (December 19, 2019)
- Remove `futures-executor` dependency

View File

@ -14,7 +14,7 @@ license = "MIT"
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.2"
documentation = "https://docs.rs/tower-test/0.4.0"
description = """
Utilities for writing client and server `Service` tests.
"""
@ -23,11 +23,11 @@ edition = "2018"
[dependencies]
futures-util = { version = "0.3", default-features = false }
tokio = { version = "0.3", features = ["sync"] }
tokio-test = { version = "0.3" }
tokio = { version = "1.0", features = ["sync"] }
tokio-test = "0.4"
tower-layer = { version = "0.3", path = "../tower-layer" }
tower-service = { version = "0.3" }
pin-project = "1"
[dev-dependencies]
tokio = { version = "0.3", features = ["macros"] }
tokio = { version = "1.0", features = ["macros"] }

View File

@ -1,4 +1,4 @@
#![doc(html_root_url = "https://docs.rs/tower-test/0.3.0")]
#![doc(html_root_url = "https://docs.rs/tower-test/0.4.0")]
#![warn(
missing_debug_implementations,
missing_docs,