diff --git a/Cargo.lock b/Cargo.lock index 04cd636..d282300 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -995,9 +995,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", ] @@ -1241,9 +1241,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 = [ "cc", "pkg-config", @@ -2110,9 +2110,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/mwp-scraper/Cargo.toml b/mwp-scraper/Cargo.toml index 1d3bdfe..f10f49f 100644 --- a/mwp-scraper/Cargo.toml +++ b/mwp-scraper/Cargo.toml @@ -21,7 +21,7 @@ time = "0.3.31" tokio = { version = "1.36.0", features= ["full"]} url = { version = "2.5.0", features = ["serde"] } walkdir = "2.4.0" -rusqlite = { version = "0.30.0", features = ["time", "url", "bundled"]} +rusqlite = { version = "0.31.0", features = ["time", "url", "bundled"]} mwp-content = { path="../mwp-content" } mwp-search = { path="../mwp-search" } diff --git a/mwp-web/Cargo.toml b/mwp-web/Cargo.toml index 5882534..e1996ad 100644 --- a/mwp-web/Cargo.toml +++ b/mwp-web/Cargo.toml @@ -18,7 +18,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", "bundled"]} +rusqlite = { version = "0.31.0", features = ["time", "url", "bundled"]} clap = { version = "4.5.1", features = ["derive"]} mwp-content = { path="../mwp-content" }