Files
tokio/tokio-test/Cargo.toml
T

34 lines
881 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.
2019-05-14 10:27:36 -07:00
# - Create "v0.2.x" git tag.
2019-11-26 09:17:27 -08:00
version = "0.2.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"
2019-11-26 09:17:27 -08:00
documentation = "https://docs.rs/tokio-test/0.2.0/tokio_test"
2019-04-23 23:17:57 -04:00
description = """
Testing utilities for Tokio- and futures-based code
"""
categories = ["asynchronous", "testing"]
[dependencies]
2019-11-26 09:17:27 -08:00
tokio = { version = "0.2.0", path = "../tokio", features = ["rt-core", "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]
2019-11-26 09:17:27 -08:00
tokio = { version = "0.2.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