mirror of
https://github.com/tokio-rs/tokio.git
synced 2025-09-28 12:10:37 +00:00

Since the original shell runtime was implemented, utilities have been added to encapsulate `unsafe`. The shell runtime is now able to use those utilities and not include its own `unsafe` code.
29 lines
572 B
TOML
29 lines
572 B
TOML
[package]
|
|
name = "tests-integration"
|
|
version = "0.1.0"
|
|
authors = ["Tokio Contributors <team@tokio.rs>"]
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[features]
|
|
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"]
|
|
|
|
[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"] }
|