1[package] 2name = "tokio-test" 3# When releasing to crates.io: 4# - Remove path dependencies 5# - Update doc url 6# - Cargo.toml 7# - Update CHANGELOG.md. 8# - Create "tokio-test-0.4.x" git tag. 9version = "0.4.1" 10edition = "2018" 11authors = ["Tokio Contributors <team@tokio.rs>"] 12license = "MIT" 13repository = "https://github.com/tokio-rs/tokio" 14homepage = "https://tokio.rs" 15documentation = "https://docs.rs/tokio-test/0.4.1/tokio_test" 16description = """ 17Testing utilities for Tokio- and futures-based code 18""" 19categories = ["asynchronous", "testing"] 20 21[dependencies] 22tokio = { version = "1.2.0", path = "../tokio", features = ["rt", "sync", "time", "test-util"] } 23tokio-stream = { version = "0.1", path = "../tokio-stream" } 24async-stream = "0.3" 25 26bytes = "1.0.0" 27futures-core = "0.3.0" 28 29[dev-dependencies] 30tokio = { version = "1.2.0", path = "../tokio", features = ["full"] } 31futures-util = "0.3.0" 32 33[package.metadata.docs.rs] 34all-features = true 35