Files
tokio/tokio-test/Cargo.toml
T

35 lines
1.0 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
# - README.md
# - Update CHANGELOG.md.
2019-05-14 10:27:36 -07:00
# - Create "v0.2.x" git tag.
version = "0.2.0"
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.1.0/tokio_test"
description = """
Testing utilities for Tokio- and futures-based code
"""
categories = ["asynchronous", "testing"]
publish = false
[dependencies]
2019-06-24 12:34:30 -07:00
assertive = { git = "http://github.com/carllerche/assertive" }
pin-convert = "0.1.0"
2019-05-14 10:27:36 -07:00
tokio-executor = { version = "0.2.0", path = "../tokio-executor" }
2019-07-11 14:41:37 -07:00
tokio-io = { version = "0.2.0", path = "../tokio-io" }
tokio-sync = { version = "0.2.0", path = "../tokio-sync" }
tokio-timer = { version = "0.3.0", path = "../tokio-timer" }
futures-core-preview = "0.3.0-alpha.17"
2019-07-11 14:41:37 -07:00
[dev-dependencies]
tokio = { path = "../tokio" }