Skip to content

Commit

Permalink
test: update tower-test to v0.4 (#512)
Browse files Browse the repository at this point in the history
Signed-off-by: Eliza Weisman <eliza@buoyant.io>
  • Loading branch information
hawkw committed Jan 7, 2021
1 parent 992702f commit ca685ae
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions tower-test/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
8 changes: 4 additions & 4 deletions tower-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
"""
Expand All @@ -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"] }
2 changes: 1 addition & 1 deletion tower-test/src/lib.rs
Original file line number Diff line number Diff line change
@@ -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,
Expand Down

0 comments on commit ca685ae

Please sign in to comment.