Files
tokio/tokio-test/Cargo.toml
T

37 lines
1.1 KiB
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-08-29 12:59:10 -07:00
version = "0.2.0-alpha.4"
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-08-29 12:59:10 -07:00
documentation = "https://docs.rs/tokio-test/0.2.0-alpha.4/tokio_test"
2019-04-23 23:17:57 -04:00
description = """
Testing utilities for Tokio- and futures-based code
"""
categories = ["asynchronous", "testing"]
[dependencies]
2019-08-29 12:59:10 -07:00
tokio = { version = "=0.2.0-alpha.4", path = "../tokio" }
tokio-executor = { version = "=0.2.0-alpha.4", path = "../tokio-executor" }
tokio-io = { version = "=0.2.0-alpha.4", path = "../tokio-io" }
tokio-sync = { version = "=0.2.0-alpha.4", path = "../tokio-sync" }
tokio-timer = { version = "=0.3.0-alpha.4", path = "../tokio-timer" }
futures-core-preview = "=0.3.0-alpha.18"
pin-convert = "0.1.0"
2019-07-11 14:41:37 -07:00
[dev-dependencies]
futures-util-preview = "=0.3.0-alpha.18"
[package.metadata.docs.rs]
all-features = true