1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-01-22 05:38:38 +02:00

cargo: bump the patch group with 3 updates (#1956)

Bumps the patch group with 3 updates:
[clap](https://github.com/clap-rs/clap),
[serde_json](https://github.com/serde-rs/json) and
[reqwest](https://github.com/seanmonstar/reqwest).
This commit is contained in:
dependabot[bot] 2024-04-01 11:22:57 -04:00 committed by GitHub
parent e2a4da2594
commit cc0bd2190e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 9 additions and 9 deletions

12
Cargo.lock generated
View File

@ -265,9 +265,9 @@ dependencies = [
[[package]]
name = "clap"
version = "4.5.3"
version = "4.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "949626d00e063efc93b6dca932419ceb5432f99769911c0b995f7e884c778813"
checksum = "90bc066a67923782aa8515dbaea16946c5bcc5addbd668bb80af688e53e548a0"
dependencies = [
"clap_builder",
]
@ -1995,9 +1995,9 @@ checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
[[package]]
name = "reqwest"
version = "0.12.1"
version = "0.12.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e333b1eb9fe677f6893a9efcb0d277a2d3edd83f358a236b657c32301dc6e5f6"
checksum = "2d66674f2b6fb864665eea7a3c1ac4e3dfacd2fda83cf6f935a612e01b0e3338"
dependencies = [
"base64",
"bytes",
@ -2192,9 +2192,9 @@ dependencies = [
[[package]]
name = "serde_json"
version = "1.0.114"
version = "1.0.115"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c5f09b1bd632ef549eaa9f60a1f8de742bdbc698e6cee2095fc84dde5f549ae0"
checksum = "12dc5c46daa8e9fdf4f5e71b6cf9a53f2487da0e86e55808e2d35539666497dd"
dependencies = [
"itoa",
"ryu",

View File

@ -10,7 +10,7 @@ description = "An mdbook preprocessor for comprehensive-rust."
[dependencies]
anyhow = "1.0.81"
clap = "4.5.3"
clap = "4.5.4"
lazy_static = "1.4"
log = "0.4.21"
matter = "0.1.0-alpha4"
@ -18,5 +18,5 @@ mdbook = "0.4.37"
pretty_env_logger = "0.5.0"
regex = "1.10"
serde = "1.0.197"
serde_json = "1.0.114"
serde_json = "1.0.115"
serde_yaml = "0.9"

View File

@ -13,7 +13,7 @@ name = "link-checker"
path = "concurrency/link-checker.rs"
[dependencies]
reqwest = { version = "0.12.1", features = ["blocking"] }
reqwest = { version = "0.12.2", features = ["blocking"] }
scraper = "0.19.0"
thiserror = "1.0.58"