From 6abc630836552bcdb5bd7f8acbf6679296a39510 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jul 2024 20:14:43 +0000 Subject: [PATCH] Update rusqlite requirement from 0.31 to 0.32 Updates the requirements on [rusqlite](https://github.com/rusqlite/rusqlite) to permit the latest version. - [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.31.0...v0.32.0) --- updated-dependencies: - dependency-name: rusqlite dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- storage/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/Cargo.toml b/storage/Cargo.toml index 62fd0fc..ec9b797 100644 --- a/storage/Cargo.toml +++ b/storage/Cargo.toml @@ -18,7 +18,7 @@ decentralized = [] serde = { version = "1.0", default-features = false } tokio = { version = "1", features = ["fs"] } sled = { version = "0.34", optional = true } -rusqlite = {version = "0.31", optional = true, features = ["bundled-sqlcipher-vendored-openssl"] } +rusqlite = {version = "0.32", optional = true, features = ["bundled-sqlcipher-vendored-openssl"] } tdn_types = { version = "0.10", path = "../types", default-features = false }