Files
tokio/tokio-test/Cargo.toml
T

33 lines
870 B
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 CHANGELOG.md.
2020-12-09 09:42:05 -08:00
# - Create "tokio-test-0.4.x" git tag.
2023-08-23 12:38:11 +02:00
version = "0.4.3"
edition = "2021"
2023-03-21 18:06:47 +01:00
rust-version = "1.56"
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
"""
categories = ["asynchronous", "testing"]
[dependencies]
2021-03-10 11:29:22 -08:00
tokio = { version = "1.2.0", path = "../tokio", features = ["rt", "sync", "time", "test-util"] }
tokio-stream = { version = "0.1.1", path = "../tokio-stream" }
2023-01-05 18:02:07 +08:00
async-stream = "0.3.3"
2020-12-22 19:09:26 -06:00
bytes = "1.0.0"
2019-11-07 05:09:10 +09:00
futures-core = "0.3.0"
2019-07-11 14:41:37 -07:00
[dev-dependencies]
2021-03-10 11:29:22 -08:00
tokio = { version = "1.2.0", path = "../tokio", features = ["full"] }
2019-11-07 05:09:10 +09:00
futures-util = "0.3.0"
[package.metadata.docs.rs]
all-features = true