Remove all dependencies to git.

This commit is contained in:
sebcrozet 2018-05-25 10:22:37 +02:00 committed by Sébastien Crozet
parent 8dcb4a3227
commit 9c7620e530
2 changed files with 4 additions and 4 deletions

View File

@ -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 }

View File

@ -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 }