From 83f4aff3d05d5f58de3a68196f83af6de69f9342 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Apr 2024 20:36:16 +0000 Subject: [PATCH] Update pyo3 requirement from >=0.15, <0.21 to >=0.15, <0.22 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.15.0...v0.21.1) --- updated-dependencies: - dependency-name: pyo3 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index cf28239..6bbd315 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,10 +18,10 @@ rust-version = "1.48.0" arc-swap = "~1" # It's OK to ask for std on log, because pyo3 needs it too. log = { version = "~0.4.4", default-features = false, features = ["std"] } -pyo3 = { version = ">=0.15, <0.21", default-features = false } +pyo3 = { version = ">=0.15, <0.22", default-features = false } [dev-dependencies] -pyo3 = { version = ">=0.15, <0.21", default-features = false, features = ["auto-initialize", "macros"] } +pyo3 = { version = ">=0.15, <0.22", default-features = false, features = ["auto-initialize", "macros"] } # `pyo3-macros` is lying about the minimal version for its `syn` dependency. # Because we're testing with `-Zminimal-versions`, we need to explicitly set it here.