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