From ba349ac4be631ea6214c4d072e7327b3711f2995 Mon Sep 17 00:00:00 2001 From: Zachary S Date: Sun, 10 Dec 2023 20:21:12 -0600 Subject: [PATCH] Remove `?/` syntax from Cargo.toml. nightly-2021-12-04 (used for cuda) is too old to support it. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index aa05fb06e..e2d1a4237 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ path = "src/lib.rs" [features] default = [ "std", "macros" ] -std = [ "matrixmultiply", "num-traits/std", "num-complex/std", "num-rational/std", "approx/std", "simba/std", "alga?/std" ] +std = [ "matrixmultiply", "num-traits/std", "num-complex/std", "num-rational/std", "approx/std", "simba/std" ] sparse = [ ] debug = [ "approx/num-complex", "rand" ] alloc = [ ]