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

A step towards collapsing Tokio sub crates into a single `tokio` crate (#1318). The executor implementation is now provided by the main `tokio` crate. Functionality can be opted out of by using the various net related feature flags.
26 lines
719 B
TOML
26 lines
719 B
TOML
[package]
|
|
name = "tests-build"
|
|
version = "0.1.0"
|
|
authors = ["Tokio Contributors <team@tokio.rs>"]
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[features]
|
|
# executor-without-current-thread = ["tokio-executor"]
|
|
# macros-invalid-input = ["tokio/rt-full"]
|
|
# net-no-features = ["tokio-net"]
|
|
# net-with-tcp = ["tokio-net/tcp"]
|
|
# net-with-udp = ["tokio-net/udp"]
|
|
# net-with-uds = ["tokio-net/uds"]
|
|
# net-with-process = ["tokio-net/process"]
|
|
# tokio-no-features = ["tokio"]
|
|
# tokio-with-net = ["tokio/net-full"]
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
# tokio = { path = "../tokio", optional = true, default-features = false }
|
|
|
|
[dev-dependencies]
|
|
trybuild = "1.0"
|