From 630d7f2d582f4cf47dded103ef81af36b0f731b9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Feb 2026 05:42:30 +0000 Subject: [PATCH] chore(deps): update pyo3-async-runtimes requirement from 0.27 to 0.28 Updates the requirements on [pyo3-async-runtimes](https://github.com/PyO3/pyo3-async-runtimes) to permit the latest version. - [Release notes](https://github.com/PyO3/pyo3-async-runtimes/releases) - [Changelog](https://github.com/PyO3/pyo3-async-runtimes/blob/main/CHANGELOG.md) - [Commits](https://github.com/PyO3/pyo3-async-runtimes/compare/v0.27.0...v0.27.0) --- updated-dependencies: - dependency-name: pyo3-async-runtimes dependency-version: 0.27.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- llmkit-python/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llmkit-python/Cargo.toml b/llmkit-python/Cargo.toml index e10a9ae..1c50a03 100644 --- a/llmkit-python/Cargo.toml +++ b/llmkit-python/Cargo.toml @@ -24,7 +24,7 @@ rustls = { version = "0.23", default-features = false, features = ["ring", "std" pyo3 = { version = "0.27", features = ["extension-module", "abi3-py38"] } # Async support for Python -pyo3-async-runtimes = { version = "0.27", features = ["tokio-runtime"] } +pyo3-async-runtimes = { version = "0.28", features = ["tokio-runtime"] } # Convert between Rust serde types and Python objects pythonize = "0.27"