Files
tokio/Cargo.toml
T

40 lines
835 B
TOML
Raw Permalink Normal View History

[workspace]
resolver = "2"
members = [
"tokio",
"tokio-macros",
2019-04-23 23:17:57 -04:00
"tokio-test",
2020-12-15 23:24:38 -05:00
"tokio-stream",
2019-10-22 10:13:49 -07:00
"tokio-util",
# Internal
"benches",
2019-10-22 10:13:49 -07:00
"examples",
2020-12-08 06:12:22 +01:00
"stress-test",
2019-11-22 14:38:49 -08:00
"tests-build",
2019-10-25 12:50:15 -07:00
"tests-integration",
]
2024-01-29 17:53:43 +08:00
[patch.crates-io]
tokio = { path = "tokio" }
tokio-macros = { path = "tokio-macros" }
tokio-stream = { path = "tokio-stream" }
tokio-test = { path = "tokio-test" }
tokio-util = { path = "tokio-util" }
2024-01-29 17:53:43 +08:00
[workspace.metadata.spellcheck]
config = "spellcheck.toml"
[workspace.lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = [
'cfg(fuzzing)',
'cfg(loom)',
'cfg(mio_unsupported_force_poll_poll)',
'cfg(tokio_allow_from_blocking_fd)',
'cfg(tokio_internal_mt_counters)',
'cfg(tokio_no_parking_lot)',
'cfg(tokio_no_tuning_tests)',
'cfg(tokio_unstable)',
2025-06-08 15:55:43 +08:00
'cfg(target_os, values("cygwin"))',
] }