1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2024-12-28 03:47:59 +02:00

Update Rust dependencies (#1487)

This fixes a low-criticality vulnerability in `atty` (on Windows):

  https://github.com/advisories/GHSA-g98v-hv3f-hcfr

I only updated the dependencies here which didn’t require code changes.
This commit is contained in:
Martin Geisler 2023-11-20 15:26:19 +01:00 committed by GitHub
parent 34f0cfb770
commit 8b863c0446
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 292 additions and 429 deletions

715
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -14,5 +14,5 @@ clap = "4.4.4"
log = "0.4.17"
matter = "0.1.0-alpha4"
mdbook = "0.4.25"
pretty_env_logger = "0.4.0"
pretty_env_logger = "0.5.0"
serde_json = "1.0.107"

View File

@ -11,5 +11,5 @@ description = "A tool for extracting starter code for exercises from Markdown fi
anyhow = "1.0.68"
log = "0.4.17"
mdbook = "0.4.25"
pretty_env_logger = "0.4.0"
pretty_env_logger = "0.5.0"
pulldown-cmark = { version = "0.9.2", default-features = false }

View File

@ -46,7 +46,7 @@ path = "concurrency/link-checker.rs"
[dependencies]
reqwest = { version = "0.11.12", features = ["blocking"] }
scraper = "0.15.0"
scraper = "0.18.0"
thiserror = "1.0.37"
[dev-dependencies]