From 40f8d2f9687630361b1233df2c06db8246a852f7 Mon Sep 17 00:00:00 2001 From: Vinzent Steinberg Date: Tue, 30 May 2017 15:20:33 +0200 Subject: [PATCH] Build conv without default features This makes it not require std. We still cannot build without std due to `sort_floats` requiring it. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 2aa46bc..a4e0ee8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ categories = ["science", "no-std"] keywords = ["statistics", "stats", "skewness", "kurtosis", "quantile"] [dependencies] -conv = "0.3" +conv = { version = "0.3", default-features = false } quickersort = "2" [dev-dependencies]