From 7c615c48b11c004ebd1fc58ca44e5af468c436f4 Mon Sep 17 00:00:00 2001 From: Kenny Kerr Date: Mon, 10 Jun 2024 12:14:47 -0700 Subject: [PATCH] Disable docs and tests for test crates (#3085) --- crates/tests/agile/Cargo.toml | 4 ++++ crates/tests/agile_reference/Cargo.toml | 4 ++++ crates/tests/alternate_success_code/Cargo.toml | 4 ++++ crates/tests/arch/Cargo.toml | 4 ++++ crates/tests/arch_feature/Cargo.toml | 4 ++++ crates/tests/array/Cargo.toml | 4 ++++ crates/tests/bcrypt/Cargo.toml | 4 ++++ crates/tests/bstr/Cargo.toml | 4 ++++ crates/tests/calling_convention/Cargo.toml | 4 ++++ crates/tests/cfg_generic/Cargo.toml | 4 ++++ crates/tests/collections/Cargo.toml | 4 ++++ crates/tests/component/Cargo.toml | 2 ++ crates/tests/component_client/Cargo.toml | 4 ++++ crates/tests/const_fields/Cargo.toml | 4 ++++ crates/tests/const_params/Cargo.toml | 4 ++++ crates/tests/const_ptrs/Cargo.toml | 4 ++++ crates/tests/core/Cargo.toml | 4 ++++ crates/tests/debug/Cargo.toml | 4 ++++ crates/tests/debug_inspectable/Cargo.toml | 4 ++++ crates/tests/debugger_visualizer/Cargo.toml | 4 ++++ crates/tests/deprecated/Cargo.toml | 4 ++++ crates/tests/dispatch/Cargo.toml | 4 ++++ crates/tests/does_not_return/Cargo.toml | 4 ++++ crates/tests/enums/Cargo.toml | 4 ++++ crates/tests/error/Cargo.toml | 4 ++++ crates/tests/event/Cargo.toml | 4 ++++ crates/tests/extensions/Cargo.toml | 4 ++++ crates/tests/handles/Cargo.toml | 4 ++++ crates/tests/helpers/Cargo.toml | 4 ++++ crates/tests/implement/Cargo.toml | 4 ++++ crates/tests/implement_core/Cargo.toml | 4 ++++ crates/tests/interface/Cargo.toml | 4 ++++ crates/tests/interface_core/Cargo.toml | 4 ++++ crates/tests/interop/Cargo.toml | 4 ++++ crates/tests/lib/Cargo.toml | 4 ++++ crates/tests/linux/Cargo.toml | 4 ++++ crates/tests/literals/Cargo.toml | 4 ++++ crates/tests/match/Cargo.toml | 4 ++++ crates/tests/matrix3x2/Cargo.toml | 4 ++++ crates/tests/metadata/Cargo.toml | 4 ++++ crates/tests/msrv/Cargo.toml | 4 ++++ crates/tests/no_std/Cargo.toml | 4 ++++ crates/tests/no_use/Cargo.toml | 4 ++++ crates/tests/noexcept/Cargo.toml | 4 ++++ crates/tests/not_dll/Cargo.toml | 4 ++++ crates/tests/query_signature/Cargo.toml | 4 ++++ crates/tests/readme/Cargo.toml | 4 ++++ crates/tests/registry/Cargo.toml | 4 ++++ crates/tests/reserved/Cargo.toml | 4 ++++ crates/tests/resources/Cargo.toml | 4 ++++ crates/tests/result/Cargo.toml | 4 ++++ crates/tests/return_handle/Cargo.toml | 4 ++++ crates/tests/return_struct/Cargo.toml | 4 ++++ crates/tests/riddle/Cargo.toml | 4 ++++ crates/tests/standalone/Cargo.toml | 4 ++++ crates/tests/string_param/Cargo.toml | 4 ++++ crates/tests/structs/Cargo.toml | 4 ++++ crates/tests/sys/Cargo.toml | 4 ++++ crates/tests/targets/Cargo.toml | 4 ++++ crates/tests/unions/Cargo.toml | 4 ++++ crates/tests/variant/Cargo.toml | 4 ++++ crates/tests/wdk/Cargo.toml | 4 ++++ crates/tests/weak/Cargo.toml | 4 ++++ crates/tests/weak_ref/Cargo.toml | 4 ++++ crates/tests/win32/Cargo.toml | 4 ++++ crates/tests/win32_arrays/Cargo.toml | 4 ++++ crates/tests/window_long/Cargo.toml | 4 ++++ crates/tests/winrt/Cargo.toml | 4 ++++ 68 files changed, 270 insertions(+) diff --git a/crates/tests/agile/Cargo.toml b/crates/tests/agile/Cargo.toml index e9c3b99b4d..077c352b71 100644 --- a/crates/tests/agile/Cargo.toml +++ b/crates/tests/agile/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/agile_reference/Cargo.toml b/crates/tests/agile_reference/Cargo.toml index cc52b4813f..3df0e5aac3 100644 --- a/crates/tests/agile_reference/Cargo.toml +++ b/crates/tests/agile_reference/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/alternate_success_code/Cargo.toml b/crates/tests/alternate_success_code/Cargo.toml index 629a944e62..b9bc359689 100644 --- a/crates/tests/alternate_success_code/Cargo.toml +++ b/crates/tests/alternate_success_code/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/arch/Cargo.toml b/crates/tests/arch/Cargo.toml index a64347b8d9..4556ee9a8a 100644 --- a/crates/tests/arch/Cargo.toml +++ b/crates/tests/arch/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/arch_feature/Cargo.toml b/crates/tests/arch_feature/Cargo.toml index ca2ff163f1..20d3581e19 100644 --- a/crates/tests/arch_feature/Cargo.toml +++ b/crates/tests/arch_feature/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/array/Cargo.toml b/crates/tests/array/Cargo.toml index 581d4a9a95..310e403e3f 100644 --- a/crates/tests/array/Cargo.toml +++ b/crates/tests/array/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/bcrypt/Cargo.toml b/crates/tests/bcrypt/Cargo.toml index 0e4f115fd7..30e5ff12f5 100644 --- a/crates/tests/bcrypt/Cargo.toml +++ b/crates/tests/bcrypt/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/bstr/Cargo.toml b/crates/tests/bstr/Cargo.toml index aebb9605d0..96b1d5012a 100644 --- a/crates/tests/bstr/Cargo.toml +++ b/crates/tests/bstr/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/calling_convention/Cargo.toml b/crates/tests/calling_convention/Cargo.toml index fa4dfde73e..70a9feae22 100644 --- a/crates/tests/calling_convention/Cargo.toml +++ b/crates/tests/calling_convention/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [lints.rust] unexpected_cfgs = { level = "warn", check-cfg = ['cfg(windows_raw_dylib)'] } diff --git a/crates/tests/cfg_generic/Cargo.toml b/crates/tests/cfg_generic/Cargo.toml index 30a960bbcd..ba45f2f5be 100644 --- a/crates/tests/cfg_generic/Cargo.toml +++ b/crates/tests/cfg_generic/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/collections/Cargo.toml b/crates/tests/collections/Cargo.toml index 22c7ee442f..2aa27fffd7 100644 --- a/crates/tests/collections/Cargo.toml +++ b/crates/tests/collections/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/component/Cargo.toml b/crates/tests/component/Cargo.toml index f62a93f997..546786541e 100644 --- a/crates/tests/component/Cargo.toml +++ b/crates/tests/component/Cargo.toml @@ -6,6 +6,8 @@ publish = false [lib] crate-type = ["cdylib"] +doc = false +doctest = false [dependencies.windows-core] path = "../../libs/core" diff --git a/crates/tests/component_client/Cargo.toml b/crates/tests/component_client/Cargo.toml index 4319a0b72a..621c644c03 100644 --- a/crates/tests/component_client/Cargo.toml +++ b/crates/tests/component_client/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows-core] path = "../../libs/core" diff --git a/crates/tests/const_fields/Cargo.toml b/crates/tests/const_fields/Cargo.toml index 3c80bf10b7..a57adb43f7 100644 --- a/crates/tests/const_fields/Cargo.toml +++ b/crates/tests/const_fields/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/const_params/Cargo.toml b/crates/tests/const_params/Cargo.toml index c0d0d094ef..116c2d1d36 100644 --- a/crates/tests/const_params/Cargo.toml +++ b/crates/tests/const_params/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/const_ptrs/Cargo.toml b/crates/tests/const_ptrs/Cargo.toml index 0c228fbf3f..04d442bd33 100644 --- a/crates/tests/const_ptrs/Cargo.toml +++ b/crates/tests/const_ptrs/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/core/Cargo.toml b/crates/tests/core/Cargo.toml index 9a989557a7..93c5abee97 100644 --- a/crates/tests/core/Cargo.toml +++ b/crates/tests/core/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/debug/Cargo.toml b/crates/tests/debug/Cargo.toml index 19ee210c9c..2d10258936 100644 --- a/crates/tests/debug/Cargo.toml +++ b/crates/tests/debug/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/debug_inspectable/Cargo.toml b/crates/tests/debug_inspectable/Cargo.toml index 21dda1d869..5eefdf6bfc 100644 --- a/crates/tests/debug_inspectable/Cargo.toml +++ b/crates/tests/debug_inspectable/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/debugger_visualizer/Cargo.toml b/crates/tests/debugger_visualizer/Cargo.toml index c5b7f64d5a..73b67d5370 100644 --- a/crates/tests/debugger_visualizer/Cargo.toml +++ b/crates/tests/debugger_visualizer/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [lints.rust] unexpected_cfgs = { level = "warn", check-cfg = ['cfg(windows_debugger_visualizer)'] } diff --git a/crates/tests/deprecated/Cargo.toml b/crates/tests/deprecated/Cargo.toml index 1fdc233515..ec4e990aab 100644 --- a/crates/tests/deprecated/Cargo.toml +++ b/crates/tests/deprecated/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/dispatch/Cargo.toml b/crates/tests/dispatch/Cargo.toml index 27f7c9a20f..52040acd4c 100644 --- a/crates/tests/dispatch/Cargo.toml +++ b/crates/tests/dispatch/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/does_not_return/Cargo.toml b/crates/tests/does_not_return/Cargo.toml index f98c7a4e45..9cdef4e527 100644 --- a/crates/tests/does_not_return/Cargo.toml +++ b/crates/tests/does_not_return/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/enums/Cargo.toml b/crates/tests/enums/Cargo.toml index be2d0d4cc6..78477b5b70 100644 --- a/crates/tests/enums/Cargo.toml +++ b/crates/tests/enums/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/error/Cargo.toml b/crates/tests/error/Cargo.toml index ec46c0f29e..41d8867d7f 100644 --- a/crates/tests/error/Cargo.toml +++ b/crates/tests/error/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/event/Cargo.toml b/crates/tests/event/Cargo.toml index f935705e0b..daec155298 100644 --- a/crates/tests/event/Cargo.toml +++ b/crates/tests/event/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/extensions/Cargo.toml b/crates/tests/extensions/Cargo.toml index e9bb7f32d5..1cd473b9b1 100644 --- a/crates/tests/extensions/Cargo.toml +++ b/crates/tests/extensions/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/handles/Cargo.toml b/crates/tests/handles/Cargo.toml index e433e8bf91..45ec8c9aec 100644 --- a/crates/tests/handles/Cargo.toml +++ b/crates/tests/handles/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/helpers/Cargo.toml b/crates/tests/helpers/Cargo.toml index 226a575a2c..96e696faff 100644 --- a/crates/tests/helpers/Cargo.toml +++ b/crates/tests/helpers/Cargo.toml @@ -4,5 +4,9 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows-targets] path = "../../libs/targets" diff --git a/crates/tests/implement/Cargo.toml b/crates/tests/implement/Cargo.toml index fe027b5e8f..c1948c69dd 100644 --- a/crates/tests/implement/Cargo.toml +++ b/crates/tests/implement/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/implement_core/Cargo.toml b/crates/tests/implement_core/Cargo.toml index ac270d2f4d..b90a6c1bd2 100644 --- a/crates/tests/implement_core/Cargo.toml +++ b/crates/tests/implement_core/Cargo.toml @@ -3,6 +3,10 @@ name = "test_implement_core" version = "0.1.0" edition = "2021" +[lib] +doc = false +doctest = false + [dependencies.windows-core] path = "../../libs/core" diff --git a/crates/tests/interface/Cargo.toml b/crates/tests/interface/Cargo.toml index 47299c8a8e..5d06acd650 100644 --- a/crates/tests/interface/Cargo.toml +++ b/crates/tests/interface/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/interface_core/Cargo.toml b/crates/tests/interface_core/Cargo.toml index 1d99f3980c..f1f8c0fa35 100644 --- a/crates/tests/interface_core/Cargo.toml +++ b/crates/tests/interface_core/Cargo.toml @@ -4,5 +4,9 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows-core] path = "../../libs/core" diff --git a/crates/tests/interop/Cargo.toml b/crates/tests/interop/Cargo.toml index 7f55a9b5a9..57d4a07ede 100644 --- a/crates/tests/interop/Cargo.toml +++ b/crates/tests/interop/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/lib/Cargo.toml b/crates/tests/lib/Cargo.toml index 6c81870be9..37c3d2ab28 100644 --- a/crates/tests/lib/Cargo.toml +++ b/crates/tests/lib/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/linux/Cargo.toml b/crates/tests/linux/Cargo.toml index 07160329f3..6bc89e611f 100644 --- a/crates/tests/linux/Cargo.toml +++ b/crates/tests/linux/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/literals/Cargo.toml b/crates/tests/literals/Cargo.toml index 6ec5e0ec68..9dada3c6b2 100644 --- a/crates/tests/literals/Cargo.toml +++ b/crates/tests/literals/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" diff --git a/crates/tests/match/Cargo.toml b/crates/tests/match/Cargo.toml index 9024dd84dd..1808ed5828 100644 --- a/crates/tests/match/Cargo.toml +++ b/crates/tests/match/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/matrix3x2/Cargo.toml b/crates/tests/matrix3x2/Cargo.toml index a7d602bed4..14051ddbe6 100644 --- a/crates/tests/matrix3x2/Cargo.toml +++ b/crates/tests/matrix3x2/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/metadata/Cargo.toml b/crates/tests/metadata/Cargo.toml index bc69c62c1b..7ac6459823 100644 --- a/crates/tests/metadata/Cargo.toml +++ b/crates/tests/metadata/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies] metadata = { package = "windows-metadata", path = "../../libs/metadata" } diff --git a/crates/tests/msrv/Cargo.toml b/crates/tests/msrv/Cargo.toml index 0a42d3ca63..f7e5a75ee7 100644 --- a/crates/tests/msrv/Cargo.toml +++ b/crates/tests/msrv/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/no_std/Cargo.toml b/crates/tests/no_std/Cargo.toml index 8c84e170c8..7bac176a54 100644 --- a/crates/tests/no_std/Cargo.toml +++ b/crates/tests/no_std/Cargo.toml @@ -3,6 +3,10 @@ name = "no_std" version = "0.1.0" edition = "2021" +[lib] +doc = false +doctest = false + [dependencies.windows-core] path = "../../libs/core" default-features = false diff --git a/crates/tests/no_use/Cargo.toml b/crates/tests/no_use/Cargo.toml index 4088cd46de..85d44b6b9a 100644 --- a/crates/tests/no_use/Cargo.toml +++ b/crates/tests/no_use/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/noexcept/Cargo.toml b/crates/tests/noexcept/Cargo.toml index 881ecabdda..f62bf7f55d 100644 --- a/crates/tests/noexcept/Cargo.toml +++ b/crates/tests/noexcept/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows-core] path = "../../libs/core" diff --git a/crates/tests/not_dll/Cargo.toml b/crates/tests/not_dll/Cargo.toml index b52c8477cd..4b3360bfe9 100644 --- a/crates/tests/not_dll/Cargo.toml +++ b/crates/tests/not_dll/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/query_signature/Cargo.toml b/crates/tests/query_signature/Cargo.toml index 4b4d4bfab9..fd71e744a9 100644 --- a/crates/tests/query_signature/Cargo.toml +++ b/crates/tests/query_signature/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/readme/Cargo.toml b/crates/tests/readme/Cargo.toml index 2e6dc52009..c11d69d521 100644 --- a/crates/tests/readme/Cargo.toml +++ b/crates/tests/readme/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/registry/Cargo.toml b/crates/tests/registry/Cargo.toml index 0a2c9770b3..b76595089c 100644 --- a/crates/tests/registry/Cargo.toml +++ b/crates/tests/registry/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows-registry] path = "../../libs/registry" diff --git a/crates/tests/reserved/Cargo.toml b/crates/tests/reserved/Cargo.toml index b064977c4f..cb1c8754cb 100644 --- a/crates/tests/reserved/Cargo.toml +++ b/crates/tests/reserved/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/resources/Cargo.toml b/crates/tests/resources/Cargo.toml index de0ae09520..50b6b6f0a4 100644 --- a/crates/tests/resources/Cargo.toml +++ b/crates/tests/resources/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/result/Cargo.toml b/crates/tests/result/Cargo.toml index 6a3c69acf4..ba88c24086 100644 --- a/crates/tests/result/Cargo.toml +++ b/crates/tests/result/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows-result] path = "../../libs/result" diff --git a/crates/tests/return_handle/Cargo.toml b/crates/tests/return_handle/Cargo.toml index d96e16d5a1..3ea3366a9f 100644 --- a/crates/tests/return_handle/Cargo.toml +++ b/crates/tests/return_handle/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/return_struct/Cargo.toml b/crates/tests/return_struct/Cargo.toml index 42ed3f300c..a5564532e2 100644 --- a/crates/tests/return_struct/Cargo.toml +++ b/crates/tests/return_struct/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/riddle/Cargo.toml b/crates/tests/riddle/Cargo.toml index 3d7d8e33a6..f8a707398c 100644 --- a/crates/tests/riddle/Cargo.toml +++ b/crates/tests/riddle/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows-core] path = "../../libs/core" diff --git a/crates/tests/standalone/Cargo.toml b/crates/tests/standalone/Cargo.toml index 93ec1db0d6..8a160a1c9e 100644 --- a/crates/tests/standalone/Cargo.toml +++ b/crates/tests/standalone/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows-core] path = "../../libs/core" diff --git a/crates/tests/string_param/Cargo.toml b/crates/tests/string_param/Cargo.toml index 929589de05..3e52dc55fb 100644 --- a/crates/tests/string_param/Cargo.toml +++ b/crates/tests/string_param/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/structs/Cargo.toml b/crates/tests/structs/Cargo.toml index 9d82a1ad72..e322f4434a 100644 --- a/crates/tests/structs/Cargo.toml +++ b/crates/tests/structs/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/sys/Cargo.toml b/crates/tests/sys/Cargo.toml index 02a95c17c8..491fd6edec 100644 --- a/crates/tests/sys/Cargo.toml +++ b/crates/tests/sys/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows-sys] path = "../../libs/sys" features = [ diff --git a/crates/tests/targets/Cargo.toml b/crates/tests/targets/Cargo.toml index 3595b78fe8..2ed7586f00 100644 --- a/crates/tests/targets/Cargo.toml +++ b/crates/tests/targets/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows-targets] path = "../../libs/targets" diff --git a/crates/tests/unions/Cargo.toml b/crates/tests/unions/Cargo.toml index e48f976bef..20c5a8c582 100644 --- a/crates/tests/unions/Cargo.toml +++ b/crates/tests/unions/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/variant/Cargo.toml b/crates/tests/variant/Cargo.toml index 38b262dd07..7f6a5bcc91 100644 --- a/crates/tests/variant/Cargo.toml +++ b/crates/tests/variant/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows-core] path = "../../libs/core" diff --git a/crates/tests/wdk/Cargo.toml b/crates/tests/wdk/Cargo.toml index 30c3450ccf..663469fdfc 100644 --- a/crates/tests/wdk/Cargo.toml +++ b/crates/tests/wdk/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/weak/Cargo.toml b/crates/tests/weak/Cargo.toml index a0fdc7743d..229a816b24 100644 --- a/crates/tests/weak/Cargo.toml +++ b/crates/tests/weak/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/weak_ref/Cargo.toml b/crates/tests/weak_ref/Cargo.toml index 5f6a40b56b..93c2cb20f5 100644 --- a/crates/tests/weak_ref/Cargo.toml +++ b/crates/tests/weak_ref/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/win32/Cargo.toml b/crates/tests/win32/Cargo.toml index 32b7839765..5bea08f1ba 100644 --- a/crates/tests/win32/Cargo.toml +++ b/crates/tests/win32/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/win32_arrays/Cargo.toml b/crates/tests/win32_arrays/Cargo.toml index 88c17bec08..17f0a891f5 100644 --- a/crates/tests/win32_arrays/Cargo.toml +++ b/crates/tests/win32_arrays/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/window_long/Cargo.toml b/crates/tests/window_long/Cargo.toml index 9507ad945a..668fbe0089 100644 --- a/crates/tests/window_long/Cargo.toml +++ b/crates/tests/window_long/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [ diff --git a/crates/tests/winrt/Cargo.toml b/crates/tests/winrt/Cargo.toml index c3223691f9..fa09f0050f 100644 --- a/crates/tests/winrt/Cargo.toml +++ b/crates/tests/winrt/Cargo.toml @@ -4,6 +4,10 @@ version = "0.0.0" edition = "2021" publish = false +[lib] +doc = false +doctest = false + [dependencies.windows] path = "../../libs/windows" features = [