mirror of
https://github.com/tower-rs/tower.git
synced 2025-10-02 15:25:11 +00:00
test: update tower-test to v0.4 (#512)
Signed-off-by: Eliza Weisman <eliza@buoyant.io>
This commit is contained in:
parent
992702fd20
commit
ca685ae943
@ -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)
|
# 0.3.0 (December 19, 2019)
|
||||||
|
|
||||||
- Remove `futures-executor` dependency
|
- Remove `futures-executor` dependency
|
||||||
|
@ -14,7 +14,7 @@ license = "MIT"
|
|||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
repository = "https://github.com/tower-rs/tower"
|
repository = "https://github.com/tower-rs/tower"
|
||||||
homepage = "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 = """
|
description = """
|
||||||
Utilities for writing client and server `Service` tests.
|
Utilities for writing client and server `Service` tests.
|
||||||
"""
|
"""
|
||||||
@ -23,11 +23,11 @@ edition = "2018"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
futures-util = { version = "0.3", default-features = false }
|
futures-util = { version = "0.3", default-features = false }
|
||||||
tokio = { version = "0.3", features = ["sync"] }
|
tokio = { version = "1.0", features = ["sync"] }
|
||||||
tokio-test = { version = "0.3" }
|
tokio-test = "0.4"
|
||||||
tower-layer = { version = "0.3", path = "../tower-layer" }
|
tower-layer = { version = "0.3", path = "../tower-layer" }
|
||||||
tower-service = { version = "0.3" }
|
tower-service = { version = "0.3" }
|
||||||
pin-project = "1"
|
pin-project = "1"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tokio = { version = "0.3", features = ["macros"] }
|
tokio = { version = "1.0", features = ["macros"] }
|
||||||
|
@ -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(
|
#![warn(
|
||||||
missing_debug_implementations,
|
missing_debug_implementations,
|
||||||
missing_docs,
|
missing_docs,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user