From 0f593e6b4da804e1ea4b5a8eda2dd2148dca9ebd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 17 May 2026 21:26:48 +0000 Subject: [PATCH] chore(deps): bump rusqlite from 0.36.0 to 0.37.0 Bumps [rusqlite](https://github.com/rusqlite/rusqlite) from 0.36.0 to 0.37.0. - [Release notes](https://github.com/rusqlite/rusqlite/releases) - [Changelog](https://github.com/rusqlite/rusqlite/blob/master/Changelog.md) - [Commits](https://github.com/rusqlite/rusqlite/compare/v0.36.0...v0.37.0) --- updated-dependencies: - dependency-name: rusqlite dependency-version: 0.37.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 8 ++++---- Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0ffe6710..fee5c49c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2490,9 +2490,9 @@ dependencies = [ [[package]] name = "libsqlite3-sys" -version = "0.34.0" +version = "0.35.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "91632f3b4fb6bd1d72aa3d78f41ffecfcf2b1a6648d8c241dbe7dbfaf4875e15" +checksum = "133c182a6a2c87864fe97778797e46c7e999672690dc9fa3ee8e241aa4a9c13f" dependencies = [ "cc", "pkg-config", @@ -4244,9 +4244,9 @@ dependencies = [ [[package]] name = "rusqlite" -version = "0.36.0" +version = "0.37.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3de23c3319433716cf134eed225fe9986bc24f63bed9be9f20c329029e672dc7" +checksum = "165ca6e57b20e1351573e3729b958bc62f0e48025386970b6e4d29e7a7e71f3f" dependencies = [ "bitflags 2.11.1", "fallible-iterator 0.3.0", diff --git a/Cargo.toml b/Cargo.toml index 17261f5d..63eeaae5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -109,7 +109,7 @@ fallible-streaming-iterator = "0.1.9" # requires lifting the proj-sys floor in lockstep. bundled feature compiles # SQLite from source so the workspace doesn't grow a system-sqlite runtime # dep. -rusqlite = { version = "0.36.0", default-features = false, features = ["bundled"] } +rusqlite = { version = "0.37.0", default-features = false, features = ["bundled"] } # default features pull in reqwest/http for direct fetching; we use object_store # for transport, so only the bytes integration is needed. flatgeobuf = { version = "6.0.1", default-features = false, features = ["bytes"] }