From a3696fe9aa3975db81c82dfccdebad56cf8c48bf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 2 Aug 2024 20:41:35 +0000 Subject: [PATCH] build(deps): bump serde_json from 1.0.120 to 1.0.122 Bumps [serde_json](https://github.com/serde-rs/json) from 1.0.120 to 1.0.122. - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/v1.0.120...v1.0.122) --- updated-dependencies: - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 5 +++-- mwp-scraper/Cargo.toml | 2 +- mwp-web/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bd8a601..58402fb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2544,11 +2544,12 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.120" +version = "1.0.122" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4e0d21c9a8cae1235ad58a00c11cb40d4b1e5c784f1ef2c537876ed6ffd8b7c5" +checksum = "784b6203951c57ff748476b126ccb5e8e2959a5c19e5c617ab1956be3dbc68da" dependencies = [ "itoa 1.0.10", + "memchr", "ryu", "serde", ] diff --git a/mwp-scraper/Cargo.toml b/mwp-scraper/Cargo.toml index 67cb47d..884e849 100644 --- a/mwp-scraper/Cargo.toml +++ b/mwp-scraper/Cargo.toml @@ -14,7 +14,7 @@ pulldown-cmark = "0.11.0" regex = "1.10.5" reqwest = "0.12.5" serde = "1.0.204" -serde_json = "1.0.120" +serde_json = "1.0.122" sled = "0.34.7" tantivy = { version = "0.22.0", features = ["mmap"] } time = "0.3.36" diff --git a/mwp-web/Cargo.toml b/mwp-web/Cargo.toml index d37ca28..357f3e5 100644 --- a/mwp-web/Cargo.toml +++ b/mwp-web/Cargo.toml @@ -16,7 +16,7 @@ actix-web = "4.8.0" env_logger = "0.11.5" maud = { version = "0.26.0", features = ["actix-web"] } serde = "1.0.204" -serde_json = "1.0.120" +serde_json = "1.0.122" tantivy = "0.22.0" rusqlite = { version = "0.31.0", features = ["time", "url", "bundled"]} clap = { version = "4.5.11", features = ["derive"]}