From 8b7e4b5f7f5cc6b9ca40a280c456acb2d701446b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Mar 2026 03:38:40 +0000 Subject: [PATCH] chore(deps)(deps): update pyo3 requirement from 0.21 to 0.28 Updates the requirements on [pyo3](https://github.com/pyo3/pyo3) to permit the latest version. - [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.21.0...v0.28.2) --- updated-dependencies: - dependency-name: pyo3 dependency-version: 0.28.2 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- crates/quota-router-pyo3/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/quota-router-pyo3/Cargo.toml b/crates/quota-router-pyo3/Cargo.toml index 893691b..6286d07 100644 --- a/crates/quota-router-pyo3/Cargo.toml +++ b/crates/quota-router-pyo3/Cargo.toml @@ -10,7 +10,7 @@ crate-type = ["cdylib", "rlib"] [dependencies] # PyO3 for Python bindings - using 0.21 with experimental async -pyo3 = { version = "0.21", features = ["extension-module", "experimental-async"] } +pyo3 = { version = "0.28", features = ["extension-module", "experimental-async"] } # Core library quota-router-core = { path = "../quota-router-core" }