From c7279bc400d9f42a5818df1fef1a44a3c825b86e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 5 Jun 2026 11:24:00 +0000 Subject: [PATCH] deps(core): bump the all group across 1 directory with 2 updates Updates the requirements on [pyo3](https://github.com/pyo3/pyo3) and [sqlparser](https://github.com/apache/datafusion-sqlparser-rs) to permit the latest version. Updates `pyo3` to 0.28.3 - [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.26.0...v0.28.3) Updates `sqlparser` to 0.62.0 - [Changelog](https://github.com/apache/datafusion-sqlparser-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/apache/datafusion-sqlparser-rs/compare/v0.58.0...v0.62.0) --- updated-dependencies: - dependency-name: pyo3 dependency-version: 0.28.3 dependency-type: direct:production dependency-group: all - dependency-name: sqlparser dependency-version: 0.61.0 dependency-type: direct:production dependency-group: all ... Signed-off-by: dependabot[bot] --- core/wren-core-base/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/wren-core-base/Cargo.toml b/core/wren-core-base/Cargo.toml index 2aac045593..195cda52df 100644 --- a/core/wren-core-base/Cargo.toml +++ b/core/wren-core-base/Cargo.toml @@ -9,12 +9,12 @@ python-binding = ["dep:pyo3"] default = [] [dependencies] -pyo3 = { version = "0.26.0", features = ["extension-module"], optional = true } +pyo3 = { version = "0.28.3", features = ["extension-module"], optional = true } serde = { version = "1.0.201", features = ["derive", "rc"] } wren-manifest-macro = { path = "manifest-macro" } serde_json = { version = "1.0.117" } serde_with = { version = "3.11.0" } -sqlparser = { version = "0.58.0", features = ["visitor"] } +sqlparser = { version = "0.62.0", features = ["visitor"] } [lib]