Disable unit tests for stdlib packages that don't contain any

This commit is contained in:
bjorn3 2025-07-24 09:15:28 +00:00
parent 5e1ffef03c
commit c5d7021cdd
5 changed files with 16 additions and 0 deletions

View file

@ -9,6 +9,9 @@ edition = "2024"
[lib] [lib]
path = "lib.rs" path = "lib.rs"
test = false
bench = false
doc = false
[dependencies] [dependencies]
alloc = { path = "../alloc" } alloc = { path = "../alloc" }

View file

@ -11,6 +11,9 @@ edition = "2024"
[lib] [lib]
path = "lib.rs" path = "lib.rs"
test = false
bench = false
doc = false
[dependencies] [dependencies]
core = { path = "../core", public = true } core = { path = "../core", public = true }

View file

@ -9,6 +9,9 @@ edition = "2024"
[lib] [lib]
path = "lib.rs" path = "lib.rs"
test = false
bench = false
doc = false
[dependencies] [dependencies]
std = { path = "../std" } std = { path = "../std" }

View file

@ -6,6 +6,8 @@ version = "0.0.0"
edition = "2024" edition = "2024"
[lib] [lib]
test = false
bench = false
# make sure this crate isn't included in public standard library docs # make sure this crate isn't included in public standard library docs
doc = false doc = false

View file

@ -4,6 +4,11 @@ description = "A drop-in replacement for the real windows-targets crate for use
version = "0.0.0" version = "0.0.0"
edition = "2024" edition = "2024"
[lib]
test = false
bench = false
doc = false
[features] [features]
# Enable using raw-dylib for Windows imports. # Enable using raw-dylib for Windows imports.
# This will eventually be the default. # This will eventually be the default.