mirror of
https://github.com/tokio-rs/tokio.git
synced 2025-09-28 12:10:37 +00:00
25 lines
693 B
TOML
25 lines
693 B
TOML
[package]
|
|
name = "ui-tests"
|
|
version = "0.1.0"
|
|
authors = ["Carl Lerche <me@carllerche.com>"]
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[features]
|
|
executor-without-current-thread = ["tokio-executor"]
|
|
net-no-features = ["tokio-net"]
|
|
net-with-tcp = ["tokio-net/tcp"]
|
|
net-with-udp = ["tokio-net/udp"]
|
|
tokio-no-features = ["tokio"]
|
|
tokio-with-net = ["tokio/net"]
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
tokio-executor = { path = "../tokio-executor", optional = true }
|
|
tokio-net = { path = "../tokio-net", optional = true }
|
|
tokio = { path = "../tokio", optional = true, default-features = false }
|
|
|
|
[dev-dependencies]
|
|
trybuild = "1.0"
|