2018-01-31 21:06:42 -08:00
|
|
|
[workspace]
|
2023-06-11 17:34:22 +09:00
|
|
|
resolver = "2"
|
2018-01-31 21:06:42 -08:00
|
|
|
members = [
|
2019-03-19 14:58:59 -07:00
|
|
|
"tokio",
|
2019-06-25 20:14:21 -07:00
|
|
|
"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
|
2019-12-24 20:53:20 -08:00
|
|
|
"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",
|
2018-01-31 21:06:42 -08:00
|
|
|
]
|
2024-01-29 17:53:43 +08:00
|
|
|
|
|
|
|
|
[workspace.metadata.spellcheck]
|
|
|
|
|
config = "spellcheck.toml"
|
2025-01-26 01:46:21 +09:00
|
|
|
|
|
|
|
|
[workspace.lints.rust]
|
|
|
|
|
unexpected_cfgs = { level = "warn", check-cfg = [
|
|
|
|
|
'cfg(fuzzing)',
|
|
|
|
|
'cfg(loom)',
|
|
|
|
|
'cfg(mio_unsupported_force_poll_poll)',
|
2025-03-05 12:10:30 -06:00
|
|
|
'cfg(tokio_allow_from_blocking_fd)',
|
2025-01-26 01:46:21 +09:00
|
|
|
'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"))',
|
2025-01-26 01:46:21 +09:00
|
|
|
] }
|