From 16e3d2a1e72d0a265b3fd0b4722fd4602cddec1b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 12 Oct 2023 20:45:35 +0000 Subject: [PATCH] Bump pyo3 from 0.19.2 to 0.20.0 Bumps [pyo3](https://github.com/pyo3/pyo3) from 0.19.2 to 0.20.0. - [Release notes](https://github.com/pyo3/pyo3/releases) - [Changelog](https://github.com/PyO3/pyo3/blob/main/CHANGELOG.md) - [Commits](https://github.com/pyo3/pyo3/compare/v0.19.2...v0.20.0) --- updated-dependencies: - dependency-name: pyo3 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 24 +++++++++++++++++------- Cargo.toml | 2 +- 2 files changed, 18 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5af43a0..d3c6e91 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -126,7 +126,7 @@ dependencies = [ "itoa", "once_cell", "pyo3", - "pyo3-build-config", + "pyo3-build-config 0.19.2", "rmp", "rmp-serde", "serde", @@ -184,15 +184,15 @@ dependencies = [ [[package]] name = "pyo3" -version = "0.19.2" +version = "0.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e681a6cfdc4adcc93b4d3cf993749a4552018ee0a9b65fc0ccfad74352c72a38" +checksum = "04e8453b658fe480c3e70c8ed4e3d3ec33eb74988bd186561b0cc66b85c3bc4b" dependencies = [ "cfg-if", "libc", "memoffset", "parking_lot", - "pyo3-build-config", + "pyo3-build-config 0.20.0", "pyo3-ffi", ] @@ -206,14 +206,24 @@ dependencies = [ "target-lexicon", ] +[[package]] +name = "pyo3-build-config" +version = "0.20.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a96fe70b176a89cff78f2fa7b3c930081e163d5379b4dcdf993e3ae29ca662e5" +dependencies = [ + "once_cell", + "target-lexicon", +] + [[package]] name = "pyo3-ffi" -version = "0.19.2" +version = "0.20.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e53cee42e77ebe256066ba8aa77eff722b3bb91f3419177cf4cd0f304d3284d9" +checksum = "214929900fd25e6604661ed9cf349727c8920d47deff196c4e28165a6ef2a96b" dependencies = [ "libc", - "pyo3-build-config", + "pyo3-build-config 0.20.0", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 89572c5..28341d5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -46,7 +46,7 @@ bytecount = { version = "^0.6.2", default_features = false, features = ["runtime encoding_rs = { version = "0.8", default_features = false } itoa = { version = "1", default_features = false } once_cell = { version = "1", default_features = false } -pyo3 = { version = "0.19.2", default_features = false, features = ["extension-module"]} +pyo3 = { version = "0.20.0", default_features = false, features = ["extension-module"]} serde = { version = "1", default_features = false } simdutf8 = { version = "0.1", default_features = false, features = ["std"] } smallvec = { version = "^1.8", default_features = false, features = ["union", "write"] }