Files

33 lines
806 B
TOML
Raw Permalink Normal View History

2019-04-23 23:17:57 -04:00
[package]
name = "tokio-test"
# When releasing to crates.io:
# - Remove path dependencies (if any)
2019-04-23 23:17:57 -04:00
# - Update CHANGELOG.md.
2020-12-09 09:42:05 -08:00
# - Create "tokio-test-0.4.x" git tag.
2026-01-04 13:53:43 +01:00
version = "0.4.5"
edition = "2021"
2025-10-02 11:14:17 +02:00
rust-version = "1.71"
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"
description = """
Testing utilities for Tokio- and futures-based code
"""
2023-08-26 17:09:49 +02:00
categories = ["asynchronous", "development-tools::testing"]
2019-04-23 23:17:57 -04:00
[dependencies]
tokio = { version = "1.2.0", features = ["rt", "sync", "time", "test-util"] }
tokio-stream = "0.1.1"
2019-11-07 05:09:10 +09:00
futures-core = "0.3.0"
2019-07-11 14:41:37 -07:00
[dev-dependencies]
tokio = { version = "1.2.0", features = ["full"] }
2019-11-07 05:09:10 +09:00
futures-util = "0.3.0"
[package.metadata.docs.rs]
all-features = true
[lints]
workspace = true