Disable unit tests for stdlib packages that don't contain any
This commit is contained in:
parent
5e1ffef03c
commit
c5d7021cdd
5 changed files with 16 additions and 0 deletions
|
|
@ -9,6 +9,9 @@ edition = "2024"
|
|||
|
||||
[lib]
|
||||
path = "lib.rs"
|
||||
test = false
|
||||
bench = false
|
||||
doc = false
|
||||
|
||||
[dependencies]
|
||||
alloc = { path = "../alloc" }
|
||||
|
|
|
|||
|
|
@ -11,6 +11,9 @@ edition = "2024"
|
|||
|
||||
[lib]
|
||||
path = "lib.rs"
|
||||
test = false
|
||||
bench = false
|
||||
doc = false
|
||||
|
||||
[dependencies]
|
||||
core = { path = "../core", public = true }
|
||||
|
|
|
|||
|
|
@ -9,6 +9,9 @@ edition = "2024"
|
|||
|
||||
[lib]
|
||||
path = "lib.rs"
|
||||
test = false
|
||||
bench = false
|
||||
doc = false
|
||||
|
||||
[dependencies]
|
||||
std = { path = "../std" }
|
||||
|
|
|
|||
|
|
@ -6,6 +6,8 @@ version = "0.0.0"
|
|||
edition = "2024"
|
||||
|
||||
[lib]
|
||||
test = false
|
||||
bench = false
|
||||
# make sure this crate isn't included in public standard library docs
|
||||
doc = false
|
||||
|
||||
|
|
|
|||
|
|
@ -4,6 +4,11 @@ description = "A drop-in replacement for the real windows-targets crate for use
|
|||
version = "0.0.0"
|
||||
edition = "2024"
|
||||
|
||||
[lib]
|
||||
test = false
|
||||
bench = false
|
||||
doc = false
|
||||
|
||||
[features]
|
||||
# Enable using raw-dylib for Windows imports.
|
||||
# This will eventually be the default.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue