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

It is hard to maintain features list manually, so use cargo-hack's `--each-feature` flag. And cargo-hack provides a workaround for an issue that dev-dependencies leaking into normal build (`--no-dev-deps` flag), so removed own ci tool. Also, compared to running tests on all features, there is not much advantage in running tests on each feature, so only the default features and all features are tested. If the behavior changes depending on the feature, we need to test it as another job in CI.
14 lines
154 B
TOML
14 lines
154 B
TOML
[workspace]
|
|
|
|
members = [
|
|
"tokio",
|
|
"tokio-macros",
|
|
"tokio-test",
|
|
"tokio-tls",
|
|
"tokio-util",
|
|
|
|
# Internal
|
|
"examples",
|
|
"tests-integration",
|
|
]
|