From a01fa48e33b120fa701bdbb471679f896b2c88aa Mon Sep 17 00:00:00 2001 From: zachs18 <8355914+zachs18@users.noreply.github.com> Date: Sun, 10 Dec 2023 21:35:54 -0600 Subject: [PATCH] Forward `std` feature to some deps. (#1321) --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index c24f1891..6658cfb2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ path = "src/lib.rs" [features] default = [ "std", "macros" ] -std = [ "matrixmultiply", "simba/std" ] +std = [ "matrixmultiply", "num-traits/std", "num-complex/std", "num-rational/std", "approx/std", "simba/std" ] sparse = [ ] debug = [ "approx/num-complex", "rand" ] alloc = [ ]