about summary refs log tree commit diff
diff options
context:
space:
mode:
authorUlrik Sverdrup <bluss@users.noreply.github.com>2016-11-26 00:26:44 +0100
committerUlrik Sverdrup <bluss@users.noreply.github.com>2016-11-26 00:26:44 +0100
commit17cb7bdd8340d9f83450ebd3e58b9f76e11cc01b (patch)
treecca8bd43523724f958c7fe38da0bbe2534684a13
parent42e66344b5b036ae1853591786ebf22e2c66c045 (diff)
downloadrust-17cb7bdd8340d9f83450ebd3e58b9f76e11cc01b.tar.gz
rust-17cb7bdd8340d9f83450ebd3e58b9f76e11cc01b.zip
rustbuild: Add bench = false to std shim crates
-rw-r--r--src/libcompiler_builtins/Cargo.toml1
-rw-r--r--src/libpanic_abort/Cargo.toml1
-rw-r--r--src/libpanic_unwind/Cargo.toml1
-rw-r--r--src/librustc_unicode/Cargo.toml1
-rw-r--r--src/libunwind/Cargo.toml1
-rw-r--r--src/rustc/libc_shim/Cargo.toml1
6 files changed, 6 insertions, 0 deletions
diff --git a/src/libcompiler_builtins/Cargo.toml b/src/libcompiler_builtins/Cargo.toml
index 9e91e390a57..79570dc0252 100644
--- a/src/libcompiler_builtins/Cargo.toml
+++ b/src/libcompiler_builtins/Cargo.toml
@@ -8,6 +8,7 @@ version = "0.0.0"
 name = "compiler_builtins"
 path = "lib.rs"
 test = false
+bench = false
 
 [dependencies]
 core = { path = "../libcore" }
diff --git a/src/libpanic_abort/Cargo.toml b/src/libpanic_abort/Cargo.toml
index 9d62be64fc4..d90d2864813 100644
--- a/src/libpanic_abort/Cargo.toml
+++ b/src/libpanic_abort/Cargo.toml
@@ -6,6 +6,7 @@ version = "0.0.0"
 [lib]
 path = "lib.rs"
 test = false
+bench = false
 
 [dependencies]
 core = { path = "../libcore" }
diff --git a/src/libpanic_unwind/Cargo.toml b/src/libpanic_unwind/Cargo.toml
index 18f37a8bb17..90c16fff6f1 100644
--- a/src/libpanic_unwind/Cargo.toml
+++ b/src/libpanic_unwind/Cargo.toml
@@ -6,6 +6,7 @@ version = "0.0.0"
 [lib]
 path = "lib.rs"
 test = false
+bench = false
 
 [dependencies]
 alloc = { path = "../liballoc" }
diff --git a/src/librustc_unicode/Cargo.toml b/src/librustc_unicode/Cargo.toml
index 1f4213f0abe..e2b4afb2a51 100644
--- a/src/librustc_unicode/Cargo.toml
+++ b/src/librustc_unicode/Cargo.toml
@@ -7,6 +7,7 @@ version = "0.0.0"
 name = "rustc_unicode"
 path = "lib.rs"
 test = false
+bench = false
 
 [dependencies]
 core = { path = "../libcore" }
diff --git a/src/libunwind/Cargo.toml b/src/libunwind/Cargo.toml
index b537c6b1b71..36f361b7238 100644
--- a/src/libunwind/Cargo.toml
+++ b/src/libunwind/Cargo.toml
@@ -8,6 +8,7 @@ build = "build.rs"
 name = "unwind"
 path = "lib.rs"
 test = false
+bench = false
 
 [dependencies]
 core = { path = "../libcore" }
diff --git a/src/rustc/libc_shim/Cargo.toml b/src/rustc/libc_shim/Cargo.toml
index 8fc713e0f1b..e501766fbed 100644
--- a/src/rustc/libc_shim/Cargo.toml
+++ b/src/rustc/libc_shim/Cargo.toml
@@ -16,6 +16,7 @@ build = "build.rs"
 name = "libc"
 path = "../../liblibc/src/lib.rs"
 test = false
+bench = false
 
 [dependencies]
 core = { path = "../../libcore" }