summaryrefslogtreecommitdiffstats
path: root/tests-integration/Cargo.toml
blob: 6f84afd961b33a30095c5a48fa23c3926b3ee4da (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
[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"]
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"] }