From 5d64c536a63553d7ac17c2daf5a109f047f32295 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 6 Jun 2026 01:32:39 +0000 Subject: [PATCH] chore(deps): update polars requirement from 0.53 to 0.54 Updates the requirements on [polars](https://github.com/pola-rs/polars) to permit the latest version. - [Release notes](https://github.com/pola-rs/polars/releases) - [Commits](https://github.com/pola-rs/polars/compare/rs-0.53.0...rs-0.54.4) --- updated-dependencies: - dependency-name: polars dependency-version: 0.54.4 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- crates/reclink-py/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/reclink-py/Cargo.toml b/crates/reclink-py/Cargo.toml index 8f00143..764c17f 100644 --- a/crates/reclink-py/Cargo.toml +++ b/crates/reclink-py/Cargo.toml @@ -22,7 +22,7 @@ serde_json = "1.0" serde = { version = "1.0", features = ["derive"] } # Optional: Polars expression plugin (version must match user's polars installation) -polars = { version = "0.53", features = ["lazy"], optional = true } +polars = { version = "0.54", features = ["lazy"], optional = true } pyo3-polars = { version = "0.21", features = ["derive"], optional = true } [features]