From 9d156f702aaae23d787cd395b6a0b737ca46b0a8 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 8 Nov 2024 11:34:29 +0000 Subject: [PATCH] fix(deps): update rust crate pyo3 to 0.22 --- rust/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rust/Cargo.toml b/rust/Cargo.toml index d3d189bc5..b64be15cf 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustext" -version = "0.1.2" +version = "0.2.0" authors = ["Luke Shingles "] edition = "2021" @@ -11,6 +11,6 @@ crate-type = ["cdylib"] [dependencies] autocompress = { version = "0.6.0", features = ["gzip", "rayon", "xz", "zstd"] } polars = { version = "0.44.1", features = ["diagonal_concat", "performant"] } -pyo3 = { version = "0.21", features = ["abi3-py310"] } +pyo3 = { version = "0.22", features = ["abi3-py310"] } pyo3-polars = { version = "0.18.0", features = ["dtype-struct"]} rayon = "1.10"