From f1d199d0b4ec62180044bdaa781818be585b2b10 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 29 May 2023 01:38:08 +0000 Subject: [PATCH] fix(deps): update rust crate log to 0.4.18 --- rust/stub/Cargo.lock | 7 ++----- rust/stub/Cargo.toml | 2 +- rust/tool/Cargo.lock | 7 ++----- rust/tool/Cargo.toml | 2 +- 4 files changed, 6 insertions(+), 12 deletions(-) diff --git a/rust/stub/Cargo.lock b/rust/stub/Cargo.lock index 4860e15..9f8b918 100644 --- a/rust/stub/Cargo.lock +++ b/rust/stub/Cargo.lock @@ -119,12 +119,9 @@ checksum = "2b00cc1c228a6782d0f076e7b232802e0c5689d41bb5df366f2a6b6621cfdfe1" [[package]] name = "log" -version = "0.4.17" +version = "0.4.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" -dependencies = [ - "cfg-if", -] +checksum = "518ef76f2f87365916b142844c16d8fefd85039bc5699050210a7778ee1cd1de" [[package]] name = "plain" diff --git a/rust/stub/Cargo.toml b/rust/stub/Cargo.toml index 2386e76..a033842 100644 --- a/rust/stub/Cargo.toml +++ b/rust/stub/Cargo.toml @@ -13,7 +13,7 @@ goblin = { version = "0.6.1", default-features = false, features = [ "pe64", "al bitflags = "2.3.1" # 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. sha2 = { version = "0.10.6", default-features = false, features = ["force-soft"] } diff --git a/rust/tool/Cargo.lock b/rust/tool/Cargo.lock index 9d3ec68..97bf645 100644 --- a/rust/tool/Cargo.lock +++ b/rust/tool/Cargo.lock @@ -504,12 +504,9 @@ checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519" [[package]] name = "log" -version = "0.4.17" +version = "0.4.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" -dependencies = [ - "cfg-if", -] +checksum = "518ef76f2f87365916b142844c16d8fefd85039bc5699050210a7778ee1cd1de" [[package]] name = "memchr" diff --git a/rust/tool/Cargo.toml b/rust/tool/Cargo.toml index 125c6c6..29193ac 100644 --- a/rust/tool/Cargo.toml +++ b/rust/tool/Cargo.toml @@ -24,7 +24,7 @@ sha2 = "0.10.6" # Keep the fastrand version aligned with the one from tempfile to avoid two # different versions. fastrand = "1.9.0" -log = { version = "0.4.17", features = ["std"] } +log = { version = "0.4.18", features = ["std"] } stderrlog = "0.5.4" indoc = "2.0.1"