mirror of
https://github.com/tokio-rs/tokio.git
synced 2025-09-25 12:00:35 +00:00
33 lines
875 B
TOML
33 lines
875 B
TOML
[package]
|
|
name = "tokio-test"
|
|
# When releasing to crates.io:
|
|
# - Remove path dependencies
|
|
# - Update CHANGELOG.md.
|
|
# - Create "tokio-test-0.4.x" git tag.
|
|
version = "0.4.4"
|
|
edition = "2021"
|
|
rust-version = "1.70"
|
|
authors = ["Tokio Contributors <team@tokio.rs>"]
|
|
license = "MIT"
|
|
repository = "https://github.com/tokio-rs/tokio"
|
|
homepage = "https://tokio.rs"
|
|
description = """
|
|
Testing utilities for Tokio- and futures-based code
|
|
"""
|
|
categories = ["asynchronous", "development-tools::testing"]
|
|
|
|
[dependencies]
|
|
tokio = { version = "1.2.0", path = "../tokio", features = ["rt", "sync", "time", "test-util"] }
|
|
tokio-stream = { version = "0.1.1", path = "../tokio-stream" }
|
|
futures-core = "0.3.0"
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1.2.0", path = "../tokio", features = ["full"] }
|
|
futures-util = "0.3.0"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
|
|
[lints]
|
|
workspace = true
|