fix(deps): update rust crate log to 0.4.18

This commit is contained in:
renovate[bot] 2023-05-29 01:38:08 +00:00 committed by GitHub
parent e9003f12e6
commit f1d199d0b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 12 deletions

7
rust/stub/Cargo.lock generated
View File

@ -119,12 +119,9 @@ checksum = "2b00cc1c228a6782d0f076e7b232802e0c5689d41bb5df366f2a6b6621cfdfe1"
[[package]] [[package]]
name = "log" name = "log"
version = "0.4.17" version = "0.4.18"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" checksum = "518ef76f2f87365916b142844c16d8fefd85039bc5699050210a7778ee1cd1de"
dependencies = [
"cfg-if",
]
[[package]] [[package]]
name = "plain" name = "plain"

View File

@ -13,7 +13,7 @@ goblin = { version = "0.6.1", default-features = false, features = [ "pe64", "al
bitflags = "2.3.1" bitflags = "2.3.1"
# Even in debug builds, we don't enable the debug logs, because they generate a lot of spam from goblin. # Even in debug builds, we don't enable the debug logs, because they generate a lot of spam from goblin.
log = { version = "0.4.17", default-features = false, features = [ "max_level_info", "release_max_level_warn" ]} log = { version = "0.4.18", default-features = false, features = [ "max_level_info", "release_max_level_warn" ]}
# Use software implementation because the UEFI target seems to need it. # Use software implementation because the UEFI target seems to need it.
sha2 = { version = "0.10.6", default-features = false, features = ["force-soft"] } sha2 = { version = "0.10.6", default-features = false, features = ["force-soft"] }

7
rust/tool/Cargo.lock generated
View File

@ -504,12 +504,9 @@ checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
[[package]] [[package]]
name = "log" name = "log"
version = "0.4.17" version = "0.4.18"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" checksum = "518ef76f2f87365916b142844c16d8fefd85039bc5699050210a7778ee1cd1de"
dependencies = [
"cfg-if",
]
[[package]] [[package]]
name = "memchr" name = "memchr"

View File

@ -24,7 +24,7 @@ sha2 = "0.10.6"
# Keep the fastrand version aligned with the one from tempfile to avoid two # Keep the fastrand version aligned with the one from tempfile to avoid two
# different versions. # different versions.
fastrand = "1.9.0" fastrand = "1.9.0"
log = { version = "0.4.17", features = ["std"] } log = { version = "0.4.18", features = ["std"] }
stderrlog = "0.5.4" stderrlog = "0.5.4"
indoc = "2.0.1" indoc = "2.0.1"