From 37cf89b566a2cb322baefb18976b1b9824eb41b9 Mon Sep 17 00:00:00 2001 From: Dimitri Sabadie Date: Fri, 12 Oct 2018 23:27:04 +0200 Subject: [PATCH] Fix the nalgebra dependency to accept 0.14, 0.15 and 0.16. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index a559b1d..8ae3141 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ impl-cgmath = ["cgmath"] impl-nalgebra = ["nalgebra"] [dependencies.nalgebra] -version = "0.14" +version = ">=0.14, <0.17" optional = true [dependencies.cgmath]