From 2bc49381d3d3132a1088e3f065e15f97563a9c6e Mon Sep 17 00:00:00 2001 From: Shun Sakai Date: Thu, 27 Jun 2024 20:44:41 +0900 Subject: [PATCH] fixup! Bump pyo3 from 0.21.2 to 0.22.0 --- crates/python/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/python/src/lib.rs b/crates/python/src/lib.rs index e6dc7b0f..23664a31 100644 --- a/crates/python/src/lib.rs +++ b/crates/python/src/lib.rs @@ -20,8 +20,8 @@ use std::borrow::Cow; use abcrypt::argon2; use pyo3::{ - exceptions::PyValueError, pyclass, pyfunction, pymethods, pymodule, types::PyModule, - wrap_pyfunction, Bound, PyResult, + exceptions::PyValueError, prelude::PyModuleMethods, pyclass, pyfunction, pymethods, pymodule, + types::PyModule, wrap_pyfunction, Bound, PyResult, }; pub use crate::params::Params;