blob: 55d5aafc557c9540e6c5d9afb8727cdb0a1a7f41 [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
Jeff Vander Stoepbf372732021-02-18 09:39:46 +01005# - Update doc url
6# - Cargo.toml
7# - Update CHANGELOG.md.
8# - Create "tokio-test-0.4.x" git tag.
Joel Galenson061ddcc2021-05-19 17:41:15 -07009version = "0.4.2"
Jeff Vander Stoepbf372732021-02-18 09:39:46 +010010edition = "2018"
11authors = ["Tokio Contributors <team@tokio.rs>"]
12license = "MIT"
13repository = "https://github.com/tokio-rs/tokio"
14homepage = "https://tokio.rs"
Joel Galenson061ddcc2021-05-19 17:41:15 -070015documentation = "https://docs.rs/tokio-test/0.4.2/tokio_test"
Jeff Vander Stoepbf372732021-02-18 09:39:46 +010016description = """
17Testing utilities for Tokio- and futures-based code
18"""
19categories = ["asynchronous", "testing"]
20
21[dependencies]
Elliott Hughes9dcb4412021-04-02 10:43:29 -070022tokio = { version = "1.2.0", path = "../tokio", features = ["rt", "sync", "time", "test-util"] }
Jeff Vander Stoepbf372732021-02-18 09:39:46 +010023tokio-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]
Elliott Hughes9dcb4412021-04-02 10:43:29 -070030tokio = { version = "1.2.0", path = "../tokio", features = ["full"] }
Jeff Vander Stoepbf372732021-02-18 09:39:46 +010031futures-util = "0.3.0"
32
33[package.metadata.docs.rs]
34all-features = true