From bd5720f5ce8bd83716fde3f7d705e4f1c04c3085 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Oct 2025 06:58:32 +0000 Subject: [PATCH] deps(deps): bump pyo3 from 0.24.2 to 0.27.0 Bumps [pyo3](https://github.com/pyo3/pyo3) from 0.24.2 to 0.27.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.24.2...v0.27.0) --- updated-dependencies: - dependency-name: pyo3 dependency-version: 0.27.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 22 ++++++++++------------ Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 13 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 10e9abe..951cb3c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1708,11 +1708,10 @@ dependencies = [ [[package]] name = "pyo3" -version = "0.24.2" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e5203598f366b11a02b13aa20cab591229ff0a89fd121a308a5df751d5fc9219" +checksum = "fa8e48c12afdeb26aa4be4e5c49fb5e11c3efa0878db783a960eea2b9ac6dd19" dependencies = [ - "cfg-if", "indoc", "libc", "memoffset", @@ -1726,19 +1725,18 @@ dependencies = [ [[package]] name = "pyo3-build-config" -version = "0.24.2" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "99636d423fa2ca130fa5acde3059308006d46f98caac629418e53f7ebb1e9999" +checksum = "bc1989dbf2b60852e0782c7487ebf0b4c7f43161ffe820849b56cf05f945cee1" dependencies = [ - "once_cell", "target-lexicon 0.13.2", ] [[package]] name = "pyo3-ffi" -version = "0.24.2" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "78f9cf92ba9c409279bc3305b5409d90db2d2c22392d443a87df3a1adad59e33" +checksum = "c808286da7500385148930152e54fb6883452033085bf1f857d85d4e82ca905c" dependencies = [ "libc", "pyo3-build-config", @@ -1746,9 +1744,9 @@ dependencies = [ [[package]] name = "pyo3-macros" -version = "0.24.2" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b999cb1a6ce21f9a6b147dcf1be9ffedf02e0043aec74dc390f3007047cecd9" +checksum = "83a0543c16be0d86cf0dbf2e2b636ece9fd38f20406bb43c255e0bc368095f92" dependencies = [ "proc-macro2", "pyo3-macros-backend", @@ -1758,9 +1756,9 @@ dependencies = [ [[package]] name = "pyo3-macros-backend" -version = "0.24.2" +version = "0.27.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "822ece1c7e1012745607d5cf0bcb2874769f0f7cb34c4cde03b9358eb9ef911a" +checksum = "2a00da2ce064dcd582448ea24a5a26fa9527e0483103019b741ebcbe632dcd29" dependencies = [ "heck", "proc-macro2", diff --git a/Cargo.toml b/Cargo.toml index 94ba542..5e32e14 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -50,7 +50,7 @@ serde_json = "1.0" clap = { version = "4.5", features = ["derive"], optional = true } # Python bindings (optional) -pyo3 = { version = "0.24", features = ["extension-module"], optional = true } +pyo3 = { version = "0.27", features = ["extension-module"], optional = true } # Date and time chrono = "0.4"