From 05d4ebea1c1dd92c2f6dfcfc71796af80566921a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 12 Jun 2026 01:14:50 +0000 Subject: [PATCH] fix(deps): update rust crate pyo3 to 0.29 --- python_bindings/Cargo.toml | 2 +- vessel_type/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/python_bindings/Cargo.toml b/python_bindings/Cargo.toml index 6a07fd4..94900f4 100644 --- a/python_bindings/Cargo.toml +++ b/python_bindings/Cargo.toml @@ -8,7 +8,7 @@ name = "autowsgr_native" crate-type = ["cdylib"] [dependencies] -pyo3 = { version = "0.28", features = ["extension-module", "abi3-py312"] } +pyo3 = { version = "0.29", features = ["extension-module", "abi3-py312"] } numpy = "0.28" autowsgr_native = { path = ".." } vessel_type = { path = "../vessel_type", features = ["pyo3"] } diff --git a/vessel_type/Cargo.toml b/vessel_type/Cargo.toml index 1ed80e9..ed1ce72 100644 --- a/vessel_type/Cargo.toml +++ b/vessel_type/Cargo.toml @@ -5,7 +5,7 @@ edition.workspace = true [dependencies] strum = { version = "0.28", features = ["derive"] } -pyo3 = { version = "0.28", optional = true } +pyo3 = { version = "0.29", optional = true } [features] pyo3 = ["dep:pyo3"]