Files
tokio/tests-integration/Cargo.toml
T

43 lines
872 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
2021-01-28 17:49:10 -08:00
[[bin]]
name = "test-cat"
[[bin]]
name = "test-mem"
required-features = ["rt-net"]
[[bin]]
name = "test-process-signal"
required-features = ["rt-process-signal"]
[features]
2021-01-28 17:49:10 -08:00
# For mem check
rt-net = ["tokio/rt", "tokio/rt-multi-thread", "tokio/net"]
# For test-process-signal
rt-process-signal = ["rt", "tokio/process", "tokio/signal"]
2021-01-28 17:49:10 -08:00
2020-01-22 18:59:22 -08:00
full = [
"macros",
2020-10-13 06:13:23 +09:00
"rt",
"rt-multi-thread",
2020-01-22 18:59:22 -08:00
"tokio/full",
"tokio-test"
]
macros = ["tokio/macros"]
sync = ["tokio/sync"]
2020-10-13 06:13:23 +09:00
rt = ["tokio/rt"]
rt-multi-thread = ["rt", "tokio/rt-multi-thread"]
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-11-07 05:09:10 +09:00
futures = { version = "0.3.0", features = ["async-await"] }