From 417db31098e19752d426814278f6a9e9d7b7653b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 1 Mar 2024 21:11:09 +0000 Subject: [PATCH] chore(cargo): bump rusqlite from 0.30.0 to 0.31.0 Bumps [rusqlite](https://github.com/rusqlite/rusqlite) from 0.30.0 to 0.31.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.30.0...v0.31.0) --- updated-dependencies: - dependency-name: rusqlite dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 12 ++++++------ Cargo.toml | 2 +- deltachat-repl/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 20db072fff..9c4f355202 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2228,9 +2228,9 @@ dependencies = [ [[package]] name = "hashlink" -version = "0.8.4" +version = "0.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7" +checksum = "692eaaf7f7607518dd3cef090f1474b61edc5301d8012f09579920df68b725ee" dependencies = [ "hashbrown", ] @@ -2805,9 +2805,9 @@ dependencies = [ [[package]] name = "libsqlite3-sys" -version = "0.27.0" +version = "0.28.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf4e226dcd58b4be396f7bd3c20da8fdee2911400705297ba7d2d7cc2c30f716" +checksum = "0c10584274047cb335c23d3e61bcef8e323adae7c5c8c760540f73610177fc3f" dependencies = [ "cc", "openssl-sys", @@ -4171,9 +4171,9 @@ dependencies = [ [[package]] name = "rusqlite" -version = "0.30.0" +version = "0.31.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a78046161564f5e7cd9008aff3b2990b3850dc8e0349119b98e8f251e099f24d" +checksum = "b838eba278d213a8beaf485bd313fd580ca4505a00d5871caeb1457c55322cae" dependencies = [ "bitflags 2.4.2", "fallible-iterator", diff --git a/Cargo.toml b/Cargo.toml index 06b6689b8e..7f41809255 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -78,7 +78,7 @@ quoted_printable = "0.5" rand = "0.8" regex = "1.10" reqwest = { version = "0.11.24", features = ["json"] } -rusqlite = { version = "0.30", features = ["sqlcipher"] } +rusqlite = { version = "0.31", features = ["sqlcipher"] } rust-hsluv = "0.1" sanitize-filename = "0.5" serde_json = "1" diff --git a/deltachat-repl/Cargo.toml b/deltachat-repl/Cargo.toml index b61ec692dc..3e0de63414 100644 --- a/deltachat-repl/Cargo.toml +++ b/deltachat-repl/Cargo.toml @@ -11,7 +11,7 @@ deltachat = { path = "..", features = ["internals"]} dirs = "5" log = "0.4.20" pretty_env_logger = "0.5" -rusqlite = "0.30" +rusqlite = "0.31" rustyline = "13" tokio = { version = "1", features = ["fs", "rt-multi-thread", "macros"] }