From d7f01fec445cc9f73f1efd817cde822d0c839e70 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 13 Oct 2020 06:12:59 +0000 Subject: [PATCH] Bump numpy from 0.11.0 to 0.12.1 Bumps [numpy](https://github.com/rust-numpy/rust-numpy) from 0.11.0 to 0.12.1. - [Release notes](https://github.com/rust-numpy/rust-numpy/releases) - [Changelog](https://github.com/PyO3/rust-numpy/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-numpy/rust-numpy/compare/v0.11.0...v0.12.1) Signed-off-by: dependabot[bot] --- Cargo.lock | 50 ++++++++++++++++++++++++++++++++++++++++++++------ Cargo.toml | 2 +- 2 files changed, 45 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 42d8f444a8..5fd3c0a5b8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -306,16 +306,16 @@ dependencies = [ [[package]] name = "numpy" -version = "0.11.0" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1afa393812b0e4c33d8a46054028ce39d79f954dfa98298f25691abf00b24e39" +checksum = "38adbba10b6b4c3c5c3537ef686cd6bc9968c9b5cacc1db4edb2f457256e5300" dependencies = [ "cfg-if", "libc", "ndarray", "num-complex", "num-traits", - "pyo3", + "pyo3 0.12.3", ] [[package]] @@ -406,7 +406,23 @@ dependencies = [ "libc", "parking_lot", "paste", - "pyo3cls", + "pyo3cls 0.11.1", + "unindent", +] + +[[package]] +name = "pyo3" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a9b90d637542bbf29b140fdd38fa308424073fd2cdf641a5680aed8020145e3c" +dependencies = [ + "ctor", + "indoc", + "inventory", + "libc", + "parking_lot", + "paste", + "pyo3cls 0.12.3", "unindent", ] @@ -421,13 +437,35 @@ dependencies = [ "syn", ] +[[package]] +name = "pyo3-derive-backend" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cee2c9fb095acb885ab7e85acc7c8e95da8c4bc7cc4b4ea64b566dfc8c91046a" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "pyo3cls" version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c3fa17e1ea569d0bf3b7c00f2a9eea831ca05e55dd76f1794c541abba1c64baa" dependencies = [ - "pyo3-derive-backend", + "pyo3-derive-backend 0.11.1", + "quote", + "syn", +] + +[[package]] +name = "pyo3cls" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f12fdd8a2f217d003c93f9819e3db1717b2e89530171edea4c0deadd90206f50" +dependencies = [ + "pyo3-derive-backend 0.12.3", "quote", "syn", ] @@ -537,7 +575,7 @@ dependencies = [ "ndarray", "numpy", "petgraph", - "pyo3", + "pyo3 0.11.1", "rand", "rand_pcg", "rayon", diff --git a/Cargo.toml b/Cargo.toml index bb2c53f6fe..0785444fce 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ crate-type = ["cdylib"] [dependencies] petgraph = "0.5.1" fixedbitset = "0.2.0" -numpy = "0.11.0" +numpy = "0.12.1" ndarray = "0.13.0" rand = "0.7" rand_pcg = "0.2"