1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-01-08 17:01:32 +02:00

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

Bumps the patch group with 3 updates:
[clap](https://github.com/clap-rs/clap),
[log](https://github.com/rust-lang/log) and
[serde_json](https://github.com/serde-rs/json).

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
dependabot[bot] 2024-07-01 11:54:41 +01:00 committed by GitHub
parent df33476ee6
commit 751b33d45f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 12 additions and 12 deletions

16
Cargo.lock generated
View File

@ -271,18 +271,18 @@ dependencies = [
[[package]]
name = "clap"
version = "4.5.7"
version = "4.5.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5db83dced34638ad474f39f250d7fea9598bdd239eaced1bdf45d597da0f433f"
checksum = "84b3edb18336f4df585bc9aa31dd99c036dfa5dc5e9a2939a722a188f3a8970d"
dependencies = [
"clap_builder",
]
[[package]]
name = "clap_builder"
version = "4.5.7"
version = "4.5.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7e204572485eb3fbf28f871612191521df159bc3e15a9f5064c66dba3a8c05f"
checksum = "c1c09dd5ada6c6c78075d6fd0da3f90d8080651e2d6cc8eb2f1aaa4034ced708"
dependencies = [
"anstream",
"anstyle",
@ -1336,9 +1336,9 @@ dependencies = [
[[package]]
name = "log"
version = "0.4.21"
version = "0.4.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
[[package]]
name = "mac"
@ -2333,9 +2333,9 @@ dependencies = [
[[package]]
name = "serde_json"
version = "1.0.118"
version = "1.0.119"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d947f6b3163d8857ea16c4fa0dd4840d52f3041039a85decd46867eb1abef2e4"
checksum = "e8eddb61f0697cc3989c5d64b452f5488e2b8a60fd7d5076a3045076ffef8cb0"
dependencies = [
"itoa",
"ryu",

View File

@ -10,13 +10,13 @@ description = "An mdbook preprocessor for comprehensive-rust."
[dependencies]
anyhow = "1.0.86"
clap = "4.5.7"
clap = "4.5.8"
lazy_static = "1.5"
log = "0.4.21"
log = "0.4.22"
matter = "0.1.0-alpha4"
mdbook = "0.4.40"
pretty_env_logger = "0.5.0"
regex = "1.10"
serde = "1.0.203"
serde_json = "1.0.118"
serde_json = "1.0.119"
serde_yaml = "0.9"

View File

@ -9,7 +9,7 @@ description = "A tool for extracting starter code for exercises from Markdown fi
[dependencies]
anyhow = "1.0.86"
log = "0.4.21"
log = "0.4.22"
mdbook = "0.4.40"
pretty_env_logger = "0.5.0"
pulldown-cmark = { version = "0.11.0", default-features = false }