Skip to content

Commit

Permalink
rustbuild: Add bench = false to std shim crates
Browse files Browse the repository at this point in the history
  • Loading branch information
bluss committed Nov 25, 2016
1 parent 42e6634 commit 17cb7bd
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/libcompiler_builtins/Cargo.toml
Expand Up @@ -8,6 +8,7 @@ version = "0.0.0"
name = "compiler_builtins"
path = "lib.rs"
test = false
bench = false

[dependencies]
core = { path = "../libcore" }
Expand Down
1 change: 1 addition & 0 deletions src/libpanic_abort/Cargo.toml
Expand Up @@ -6,6 +6,7 @@ version = "0.0.0"
[lib]
path = "lib.rs"
test = false
bench = false

[dependencies]
core = { path = "../libcore" }
Expand Down
1 change: 1 addition & 0 deletions src/libpanic_unwind/Cargo.toml
Expand Up @@ -6,6 +6,7 @@ version = "0.0.0"
[lib]
path = "lib.rs"
test = false
bench = false

[dependencies]
alloc = { path = "../liballoc" }
Expand Down
1 change: 1 addition & 0 deletions src/librustc_unicode/Cargo.toml
Expand Up @@ -7,6 +7,7 @@ version = "0.0.0"
name = "rustc_unicode"
path = "lib.rs"
test = false
bench = false

[dependencies]
core = { path = "../libcore" }
1 change: 1 addition & 0 deletions src/libunwind/Cargo.toml
Expand Up @@ -8,6 +8,7 @@ build = "build.rs"
name = "unwind"
path = "lib.rs"
test = false
bench = false

[dependencies]
core = { path = "../libcore" }
Expand Down
1 change: 1 addition & 0 deletions src/rustc/libc_shim/Cargo.toml
Expand Up @@ -16,6 +16,7 @@ build = "build.rs"
name = "libc"
path = "../../liblibc/src/lib.rs"
test = false
bench = false

[dependencies]
core = { path = "../../libcore" }

0 comments on commit 17cb7bd

Please sign in to comment.