Files
tokio/tokio-test/Cargo.toml
T

35 lines
907 B
TOML
Raw Normal View History

2019-04-23 23:17:57 -04:00
[package]
name = "tokio-test"
# When releasing to crates.io:
# - Remove path dependencies
2019-04-23 23:17:57 -04:00
# - Update html_root_url.
# - Update doc url
# - Cargo.toml
# - Update CHANGELOG.md.
# - Create "v0.3.x" git tag.
version = "0.3.0"
2019-05-14 10:27:36 -07:00
edition = "2018"
2019-04-23 23:17:57 -04:00
authors = ["Tokio Contributors <[email protected]>"]
license = "MIT"
repository = "https://github.com/tokio-rs/tokio"
homepage = "https://tokio.rs"
documentation = "https://docs.rs/tokio-test/0.3.0/tokio_test"
2019-04-23 23:17:57 -04:00
description = """
Testing utilities for Tokio- and futures-based code
"""
categories = ["asynchronous", "testing"]
publish = false
2019-04-23 23:17:57 -04:00
[dependencies]
tokio = { version = "0.3.0", path = "../tokio", features = ["rt-core", "stream", "sync", "time", "test-util"] }
2019-11-26 09:17:27 -08:00
bytes = "0.5.0"
2019-11-07 05:09:10 +09:00
futures-core = "0.3.0"
2019-07-11 14:41:37 -07:00
[dev-dependencies]
tokio = { version = "0.3.0", path = "../tokio", features = ["full"] }
2019-11-07 05:09:10 +09:00
futures-util = "0.3.0"
[package.metadata.docs.rs]
all-features = true