[package] name = "tower-async-test" # When releasing to crates.io: # - Update doc url # - Cargo.toml # - README.md # - Update CHANGELOG.md. # - Create "v0.1.x" git tag. version = "0.2.0" authors = ["Glen De Cauwsemaecker "] license = "MIT" repository = "https://github.com/plabayo/tower-async" homepage = "https://github.com/plabayo/tower-async" description = """ Utilities for writing client and server `Service` tests. An "Async Trait" spiritual fork from the original tower-test Library. """ categories = ["asynchronous", "network-programming"] edition = "2021" [dependencies] tokio = { version = "1.0", features = ["sync"] } tower-async-layer = { version = "0.2", path = "../tower-async-layer" } tower-async-service = { version = "0.2", path = "../tower-async-service" } [dev-dependencies] tokio = { version = "1.0", features = ["macros", "rt"] } [package.metadata.docs.rs] all-features = true rustdoc-args = ["--cfg", "docsrs"] [package.metadata.playground] features = ["full"]