From 25af5085bfd112094700c1afb4db9f0ec72c6e39 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Jul 2024 03:48:50 +0000 Subject: [PATCH] chore(deps): update pyo3 requirement from 0.21.2 to 0.22.0 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.2...v0.22.0) --- updated-dependencies: - dependency-name: pyo3 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- python/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 7956781..a9c87e2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,7 +27,7 @@ exclude = ["release-plz.toml", ".github", "python"] [dependencies] derive_more = "0.99.17" general-sam = { version = "1.0.0", features = ["trie"] } -pyo3 = { version = "0.21.2", optional = true } +pyo3 = { version = "0.22.0", optional = true } smallvec = "1.13.2" thiserror = "1.0.60" diff --git a/python/Cargo.toml b/python/Cargo.toml index 171f443..56c1ab8 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -16,4 +16,4 @@ crate-type = ["cdylib"] [dependencies] mtc-token-healing = { version = "0.1.2", path = "..", features = ["pyo3"] } -pyo3 = { version = "0.21.2", features = ["extension-module", "generate-import-lib", "abi3-py39"] } +pyo3 = { version = "0.22.0", features = ["extension-module", "generate-import-lib", "abi3-py39"] }