diff --git a/crates/deadpool-sqlite/CHANGELOG.md b/crates/deadpool-sqlite/CHANGELOG.md index 75f21ada..16ee89ee 100644 --- a/crates/deadpool-sqlite/CHANGELOG.md +++ b/crates/deadpool-sqlite/CHANGELOG.md @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +- Update `rusqlite` dependency to version `0.39` + ## [0.13.0] - 2026-02-17 - Bump up MSRV to `1.85` and Rust edition to `2024` diff --git a/crates/deadpool-sqlite/Cargo.toml b/crates/deadpool-sqlite/Cargo.toml index 630e2628..792052a0 100644 --- a/crates/deadpool-sqlite/Cargo.toml +++ b/crates/deadpool-sqlite/Cargo.toml @@ -67,7 +67,7 @@ deadpool = { path = "../deadpool", version = "0.13.0", default-features = false, "managed", ] } deadpool-sync = { path = "../deadpool-sync", version = "0.2" } -rusqlite = "0.38.0" +rusqlite = "0.39.0" serde = { package = "serde", version = "1.0", features = [ "derive", ], optional = true }