From 805da7cc0a46e62d90192a961a12ccf4ceca9a33 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jul 2024 03:15:28 +0000 Subject: [PATCH] chore(deps): update pyo3 requirement from 0.21.2 to 0.22.2 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/v0.22.2/CHANGELOG.md) - [Commits](https://github.com/pyo3/pyo3/compare/v0.21.2...v0.22.2) --- 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..0aae56b 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.2", optional = true } smallvec = "1.13.2" thiserror = "1.0.60" diff --git a/python/Cargo.toml b/python/Cargo.toml index 171f443..9866367 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.2", features = ["extension-module", "generate-import-lib", "abi3-py39"] }