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]
|
[lib]
|
||||||
path = "lib.rs"
|
path = "lib.rs"
|
||||||
|
test = false
|
||||||
|
bench = false
|
||||||
|
doc = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
alloc = { path = "../alloc" }
|
alloc = { path = "../alloc" }
|
||||||
|
|
|
||||||
|
|
@ -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 }
|
||||||
|
|
|
||||||
|
|
@ -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" }
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -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.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue