File tree Expand file tree Collapse file tree 5 files changed +16
-0
lines changed
rustc-std-workspace-alloc Expand file tree Collapse file tree 5 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,9 @@ edition = "2024"
99
1010[lib ]
1111path = " lib.rs"
12+ test = false
13+ bench = false
14+ doc = false
1215
1316[dependencies ]
1417alloc = { path = " ../alloc" }
Original file line number Diff line number Diff line change @@ -11,6 +11,9 @@ edition = "2024"
1111
1212[lib ]
1313path = " lib.rs"
14+ test = false
15+ bench = false
16+ doc = false
1417
1518[dependencies ]
1619core = { path = " ../core" , public = true }
Original file line number Diff line number Diff line change @@ -9,6 +9,9 @@ edition = "2024"
99
1010[lib ]
1111path = " lib.rs"
12+ test = false
13+ bench = false
14+ doc = false
1215
1316[dependencies ]
1417std = { path = " ../std" }
Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ version = "0.0.0"
66edition = " 2024"
77
88[lib ]
9+ test = false
10+ bench = false
911# make sure this crate isn't included in public standard library docs
1012doc = false
1113
Original file line number Diff line number Diff line change @@ -4,6 +4,11 @@ description = "A drop-in replacement for the real windows-targets crate for use
44version = " 0.0.0"
55edition = " 2024"
66
7+ [lib ]
8+ test = false
9+ bench = false
10+ doc = false
11+
712[features ]
813# Enable using raw-dylib for Windows imports.
914# This will eventually be the default.
You can’t perform that action at this time.
0 commit comments