From 8f018d633c7bf36ea4cd552fa4b8f89d6a453584 Mon Sep 17 00:00:00 2001 From: gnzlbg Date: Tue, 2 Jul 2019 08:32:31 +0200 Subject: [PATCH] Do not enable default features in benchmarks --- crates/libm-bench/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/libm-bench/Cargo.toml b/crates/libm-bench/Cargo.toml index 8e06e0f..d28dd86 100644 --- a/crates/libm-bench/Cargo.toml +++ b/crates/libm-bench/Cargo.toml @@ -6,6 +6,6 @@ edition = "2018" license = "MIT OR Apache-2.0" [dependencies] -libm = { path = "../.." } +libm = { path = "../..", default-features = false } rand = "0.6.5" paste = "0.1.5"