summaryrefslogtreecommitdiffstats
path: root/tests-integration/Cargo.toml
blob: c6dd84501485c3f30f45c65b0228022a34b67eb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[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"] }