mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-01-24 23:16:48 +00:00
Signed-off-by: ADD-SP <qiqi.zhang@konghq.com> Co-authored-by: Alice Ryhl <aliceryhl@google.com>
33 lines
633 B
TOML
33 lines
633 B
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"tokio",
|
|
"tokio-macros",
|
|
"tokio-test",
|
|
"tokio-stream",
|
|
"tokio-util",
|
|
|
|
# Internal
|
|
"benches",
|
|
"examples",
|
|
"stress-test",
|
|
"tests-build",
|
|
"tests-integration",
|
|
]
|
|
|
|
[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)',
|
|
'cfg(target_os, values("cygwin"))',
|
|
] }
|