Files
tokio/tests-integration/Cargo.toml
T

29 lines
572 B
TOML
Raw Normal View History

2019-10-25 12:50:15 -07:00
[package]
name = "tests-integration"
version = "0.1.0"
authors = ["Tokio Contributors <[email protected]>"]
edition = "2018"
publish = false
[features]
2020-01-22 18:59:22 -08:00
full = [
"macros",
"rt-core",
"rt-threaded",
"tokio/full",
"tokio-test"
]
macros = ["tokio/macros"]
sync = ["tokio/sync"]
rt-core = ["tokio/rt-core"]
rt-threaded = ["rt-core", "tokio/rt-threaded"]
2019-10-25 12:50:15 -07:00
[dependencies]
tokio = { path = "../tokio" }
tokio-test = { path = "../tokio-test", optional = true }
2019-11-22 15:55:10 -08:00
doc-comment = "0.3.1"
2019-10-25 12:50:15 -07:00
[dev-dependencies]
2019-11-07 05:09:10 +09:00
futures = { version = "0.3.0", features = ["async-await"] }