Switch git dependencies in Cargo.toml back to regular versions (#728)

* Switch git dependencies in Cargo.toml back to regular versions

rayon-cond turned out to be a rustc bug that has been fixed for a while
(see cuviper/rayon-cond#2), so we can revert the git dependency.

numpy has released the commit in question as part of 0.12.

* Also update Cargo.lock files

Co-authored-by: Anthony Moi <m.anthony.moi@gmail.com>
This commit is contained in:
Geoffrey Thomas
2021-08-13 09:32:00 -04:00
committed by GitHub
parent e2bf8daa3a
commit 5982498195
4 changed files with 14 additions and 42 deletions

View File

@ -15,7 +15,7 @@ serde_json = "1.0"
libc = "0.2"
env_logger = "0.7.1"
pyo3 = "0.12"
numpy = { git = "https://github.com/pyo3/rust-numpy/", rev = "e331befa27fede78d4662edf08fa0508db39be01" }
numpy = "0.12"
ndarray = "0.13"
onig = { version = "6.0", default-features = false }
itertools = "0.9"