mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-08-17 00:00:11 +02:00
* timer: restructure feature flags * update timer tests * Add `async-traits` to CI This also disables a buggy `threadpool` test. This test should be fixed in the future. Refs #1225
29 lines
823 B
TOML
29 lines
823 B
TOML
[package]
|
|
name = "tokio-test"
|
|
# When releasing to crates.io:
|
|
# - Remove path dependencies
|
|
# - Update html_root_url.
|
|
# - Update doc url
|
|
# - Cargo.toml
|
|
# - README.md
|
|
# - Update CHANGELOG.md.
|
|
# - Create "v0.2.x" git tag.
|
|
version = "0.2.0"
|
|
edition = "2018"
|
|
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]
|
|
assertive = { git = "http://github.com/carllerche/assertive" }
|
|
pin-convert = "0.1.0"
|
|
tokio-timer = { version = "0.3.0", path = "../tokio-timer" }
|
|
tokio-executor = { version = "0.2.0", path = "../tokio-executor" }
|