From 9c7620e530d166e9185add2ee5d1fafb36cf2f07 Mon Sep 17 00:00:00 2001 From: sebcrozet Date: Fri, 25 May 2018 10:22:37 +0200 Subject: [PATCH] Remove all dependencies to git. --- Cargo.toml | 4 ++-- nalgebra-lapack/Cargo.toml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 0a64023c..062092c8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,9 +29,9 @@ typenum = "1.10" generic-array = "0.11" rand = { version = "0.5", default-features = false } num-traits = { version = "0.2", default-features = false } -num-complex = { version = "0.2.0-git", git = "https://github.com/rust-num/num-complex", default-features = false } +num-complex = { version = "0.2", default-features = false } approx = { version = "0.2", default-features = false } -alga = { version = "0.5", git = "https://github.com/sebcrozet/alga.git", branch = "no_std", default-features = false } +alga = { version = "0.6", default-features = false } matrixmultiply = { version = "0.1", optional = true } serde = { version = "1.0", optional = true } serde_derive = { version = "1.0", optional = true } diff --git a/nalgebra-lapack/Cargo.toml b/nalgebra-lapack/Cargo.toml index b35a65aa..4cc45f7c 100644 --- a/nalgebra-lapack/Cargo.toml +++ b/nalgebra-lapack/Cargo.toml @@ -24,8 +24,8 @@ intel-mkl = ["lapack-src/intel-mkl"] [dependencies] nalgebra = { version = "0.14", path = ".." } num-traits = "0.2" -num-complex = { version = "0.2.0-git", git = "https://github.com/rust-num/num-complex", default-features = false } -alga = { version = "0.5", git = "https://github.com/sebcrozet/alga.git", branch = "no_std", default-features = false } +num-complex = { version = "0.2", default-features = false } +alga = { version = "0.6", default-features = false } serde = { version = "1.0", optional = true } serde_derive = { version = "1.0", optional = true } lapack = { version = "0.15", default-features = false }