From f4661897d7f6eac857453d501d54fed48fd0728c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 3 Mar 2024 11:33:10 +0000 Subject: [PATCH] build(deps): 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 +- mwp-web/Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index dffee99..0c3c5aa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -982,9 +982,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 0.14.3", ] @@ -1222,9 +1222,9 @@ checksum = "302d7ab3130588088d277783b1e2d2e10c9e9e4a16dd9050e6ec93fb3e7048f4" [[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 = [ "pkg-config", "vcpkg", @@ -2098,9 +2098,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.1", "fallible-iterator", diff --git a/Cargo.toml b/Cargo.toml index 24c9f2d..d8ec4a3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,4 +40,4 @@ serde_json = "1.0.113" mwp-scraper = { path="./mwp-scraper" } mwp-content = { path="./mwp-content" } mwp-search = { path="./mwp-search" } -rusqlite = { version = "0.30.0", features = ["time", "url"]} +rusqlite = { version = "0.31.0", features = ["time", "url"]} diff --git a/mwp-web/Cargo.toml b/mwp-web/Cargo.toml index 8eef757..8fdc0f5 100644 --- a/mwp-web/Cargo.toml +++ b/mwp-web/Cargo.toml @@ -14,7 +14,7 @@ maud = { version = "0.26.0", features = ["actix-web"] } serde = "1.0.196" serde_json = "1.0.113" tantivy = "0.21.1" -rusqlite = { version = "0.30.0", features = ["time", "url"]} +rusqlite = { version = "0.31.0", features = ["time", "url"]} mwp-content = { path="../mwp-content" } mwp-search = { path="../mwp-search" }