From 47398c560c8c9c3d7d7179a66ec7805c96944b28 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 28 Oct 2025 08:45:45 +0000 Subject: [PATCH] chore(deps): Bump sqlformat from 0.2.4 to 0.5.0 Bumps [sqlformat](https://github.com/shssoichiro/sqlformat-rs) from 0.2.4 to 0.5.0. - [Release notes](https://github.com/shssoichiro/sqlformat-rs/releases) - [Changelog](https://github.com/shssoichiro/sqlformat-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/shssoichiro/sqlformat-rs/compare/v0.2.4...v0.5.0) --- updated-dependencies: - dependency-name: sqlformat dependency-version: 0.5.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 15 ++++++++++++--- Cargo.toml | 2 +- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6cecd4b6..25b64f9a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3275,12 +3275,12 @@ dependencies = [ [[package]] name = "sqlformat" -version = "0.2.4" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f895e3734318cc55f1fe66258926c9b910c124d47520339efecbb6c59cec7c1f" +checksum = "0705994df478b895f05b8e290e0d46e53187b26f8d889d37b2a0881234922d94" dependencies = [ - "nom", "unicode_categories", + "winnow", ] [[package]] @@ -4542,6 +4542,15 @@ version = "0.52.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" +[[package]] +name = "winnow" +version = "0.7.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf" +dependencies = [ + "memchr", +] + [[package]] name = "winreg" version = "0.50.0" diff --git a/Cargo.toml b/Cargo.toml index afd8ac61..a2964df6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -60,7 +60,7 @@ serde_json = "1" serde_yaml = "0.9" similar-asserts = "1" smol_str = "0.1" -sqlformat = "0.2" +sqlformat = "0.5" sqlx = { version = "0.8", default-features = false, features = [ "postgres", "derive",