From fd568dfab4921a03fd049e556425008ee054bb2e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 17 Sep 2020 05:53:15 +0000 Subject: [PATCH] Bump pyo3 from 0.11.1 to 0.12.1 Bumps [pyo3](https://github.com/pyo3/pyo3) from 0.11.1 to 0.12.1. - [Release notes](https://github.com/pyo3/pyo3/releases) - [Changelog](https://github.com/PyO3/pyo3/blob/master/CHANGELOG.md) - [Commits](https://github.com/pyo3/pyo3/compare/v0.11.1...v0.12.1) Signed-off-by: dependabot[bot] --- Cargo.lock | 46 ++++++++++++++++++++++++++++++++++++++++++---- Cargo.toml | 2 +- 2 files changed, 43 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f749b07ce1..5448800f7b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -312,7 +312,7 @@ dependencies = [ "ndarray", "num-complex", "num-traits", - "pyo3", + "pyo3 0.11.1", ] [[package]] @@ -403,7 +403,23 @@ dependencies = [ "libc", "parking_lot", "paste", - "pyo3cls", + "pyo3cls 0.11.1", + "unindent", +] + +[[package]] +name = "pyo3" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b065394f390af20bfe60bad3728d71dfc4d397a5717f46cf9083a40ea468a52c" +dependencies = [ + "ctor", + "indoc", + "inventory", + "libc", + "parking_lot", + "paste", + "pyo3cls 0.12.1", "unindent", ] @@ -418,13 +434,35 @@ dependencies = [ "syn", ] +[[package]] +name = "pyo3-derive-backend" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3aa7cbb51801ffb526165a0ed6722b71b5c81ec43e87ceaa4b56c6501abad008" +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.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "914680828ba0395e05902bbf358c26e8bf20fb484385334ab700a61e6f1a9ccf" +dependencies = [ + "pyo3-derive-backend 0.12.1", "quote", "syn", ] @@ -534,7 +572,7 @@ dependencies = [ "ndarray", "numpy", "petgraph", - "pyo3", + "pyo3 0.12.1", "rand", "rand_pcg", "rayon", diff --git a/Cargo.toml b/Cargo.toml index 256c6eb2ad..51b1755a70 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ rand_pcg = "0.2" rayon = "1.4" [dependencies.pyo3] -version = "0.11.1" +version = "0.12.1" features = ["extension-module"] [dependencies.hashbrown]