rustbuild: Add bench = false to std shim crates
This commit is contained in:
parent
42e66344b5
commit
17cb7bdd83
6 changed files with 6 additions and 0 deletions
|
@ -8,6 +8,7 @@ version = "0.0.0"
|
|||
name = "compiler_builtins"
|
||||
path = "lib.rs"
|
||||
test = false
|
||||
bench = false
|
||||
|
||||
[dependencies]
|
||||
core = { path = "../libcore" }
|
||||
|
|
|
@ -6,6 +6,7 @@ version = "0.0.0"
|
|||
[lib]
|
||||
path = "lib.rs"
|
||||
test = false
|
||||
bench = false
|
||||
|
||||
[dependencies]
|
||||
core = { path = "../libcore" }
|
||||
|
|
|
@ -6,6 +6,7 @@ version = "0.0.0"
|
|||
[lib]
|
||||
path = "lib.rs"
|
||||
test = false
|
||||
bench = false
|
||||
|
||||
[dependencies]
|
||||
alloc = { path = "../liballoc" }
|
||||
|
|
|
@ -7,6 +7,7 @@ version = "0.0.0"
|
|||
name = "rustc_unicode"
|
||||
path = "lib.rs"
|
||||
test = false
|
||||
bench = false
|
||||
|
||||
[dependencies]
|
||||
core = { path = "../libcore" }
|
||||
|
|
|
@ -8,6 +8,7 @@ build = "build.rs"
|
|||
name = "unwind"
|
||||
path = "lib.rs"
|
||||
test = false
|
||||
bench = false
|
||||
|
||||
[dependencies]
|
||||
core = { path = "../libcore" }
|
||||
|
|
|
@ -16,6 +16,7 @@ build = "build.rs"
|
|||
name = "libc"
|
||||
path = "../../liblibc/src/lib.rs"
|
||||
test = false
|
||||
bench = false
|
||||
|
||||
[dependencies]
|
||||
core = { path = "../../libcore" }
|
||||
|
|
Loading…
Add table
Reference in a new issue