mirror of
https://github.com/tokio-rs/tokio.git
synced 2025-09-25 12:00:35 +00:00

tokio: merge rt-core and rt-util as rt rename rt-threaded to rt-multi-thread tokio-util: rename rt-core to rt Closes #2942
29 lines
564 B
TOML
29 lines
564 B
TOML
[package]
|
|
name = "tests-integration"
|
|
version = "0.1.0"
|
|
authors = ["Tokio Contributors <team@tokio.rs>"]
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[features]
|
|
full = [
|
|
"macros",
|
|
"rt",
|
|
"rt-multi-thread",
|
|
|
|
"tokio/full",
|
|
"tokio-test"
|
|
]
|
|
macros = ["tokio/macros"]
|
|
sync = ["tokio/sync"]
|
|
rt = ["tokio/rt"]
|
|
rt-multi-thread = ["rt", "tokio/rt-multi-thread"]
|
|
|
|
[dependencies]
|
|
tokio = { path = "../tokio" }
|
|
tokio-test = { path = "../tokio-test", optional = true }
|
|
doc-comment = "0.3.1"
|
|
|
|
[dev-dependencies]
|
|
futures = { version = "0.3.0", features = ["async-await"] }
|