Skip to content

Commit ca685ae

Browse files
authored
test: update tower-test to v0.4 (#512)
Signed-off-by: Eliza Weisman <[email protected]>
1 parent 992702f commit ca685ae

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

tower-test/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 0.4.0 (January 7, 2021)
2+
3+
- Updated `tokio-test` dependency to 0.4
4+
- Updated `tokio` dependency to 1.0
5+
16
# 0.3.0 (December 19, 2019)
27

38
- Remove `futures-executor` dependency

tower-test/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ license = "MIT"
1414
readme = "README.md"
1515
repository = "https://github.com/tower-rs/tower"
1616
homepage = "https://github.com/tower-rs/tower"
17-
documentation = "https://docs.rs/tower-test/0.3.0-alpha.2"
17+
documentation = "https://docs.rs/tower-test/0.4.0"
1818
description = """
1919
Utilities for writing client and server `Service` tests.
2020
"""
@@ -23,11 +23,11 @@ edition = "2018"
2323

2424
[dependencies]
2525
futures-util = { version = "0.3", default-features = false }
26-
tokio = { version = "0.3", features = ["sync"] }
27-
tokio-test = { version = "0.3" }
26+
tokio = { version = "1.0", features = ["sync"] }
27+
tokio-test = "0.4"
2828
tower-layer = { version = "0.3", path = "../tower-layer" }
2929
tower-service = { version = "0.3" }
3030
pin-project = "1"
3131

3232
[dev-dependencies]
33-
tokio = { version = "0.3", features = ["macros"] }
33+
tokio = { version = "1.0", features = ["macros"] }

tower-test/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/tower-test/0.3.0")]
1+
#![doc(html_root_url = "https://docs.rs/tower-test/0.4.0")]
22
#![warn(
33
missing_debug_implementations,
44
missing_docs,

0 commit comments

Comments
 (0)