From b3db9c1730cb2db321e7563d1e215ea01c229383 Mon Sep 17 00:00:00 2001 From: chmanie Date: Mon, 5 Dec 2022 23:36:43 +0900 Subject: [PATCH] Do not pull in default features from num-traits --- Cargo.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 87d12d8..d52b230 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,8 +9,9 @@ readme = "README.md" repository = "https://github.com/49nord/linreg-rs.git" version = "0.2.0" -[dependencies] -num-traits = "0.2.4" +[dependencies.num-traits] +version = "0.2.15" +default-features = false # Do not pull in `std` feature. [dependencies.displaydoc] version = "0.1.5"