Merge pull request #320 from nix-community/renovate/all

fix(deps): update all dependencies
This commit is contained in:
nikstur 2024-03-04 10:15:16 +00:00 committed by GitHub
commit 7fbb67b44f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 10 additions and 10 deletions

8
rust/tool/Cargo.lock generated
View File

@ -454,9 +454,9 @@ checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c"
[[package]] [[package]]
name = "log" name = "log"
version = "0.4.20" version = "0.4.21"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
[[package]] [[package]]
name = "lzbt-systemd" name = "lzbt-systemd"
@ -859,9 +859,9 @@ dependencies = [
[[package]] [[package]]
name = "walkdir" name = "walkdir"
version = "2.4.0" version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee" checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
dependencies = [ dependencies = [
"same-file", "same-file",
"winapi-util", "winapi-util",

View File

@ -9,7 +9,7 @@ edition = "2021"
anyhow = "1.0.80" anyhow = "1.0.80"
base32ct = { version = "0.2.0", features = ["alloc"] } base32ct = { version = "0.2.0", features = ["alloc"] }
stderrlog = "0.6.0" stderrlog = "0.6.0"
log = { version = "0.4.20", features = ["std"] } log = { version = "0.4.21", features = ["std"] }
clap = { version = "4.5.1", features = ["derive"] } clap = { version = "4.5.1", features = ["derive"] }
lanzaboote_tool = { path = "../shared" } lanzaboote_tool = { path = "../shared" }
indoc = "2.0.4" indoc = "2.0.4"
@ -24,4 +24,4 @@ expect-test = "1.4.1"
filetime = "0.2.23" filetime = "0.2.23"
rand = "0.8.5" rand = "0.8.5"
goblin = "0.7.1" goblin = "0.7.1"
walkdir = "2.4.0" walkdir = "2.5.0"

4
rust/uefi/Cargo.lock generated
View File

@ -126,9 +126,9 @@ dependencies = [
[[package]] [[package]]
name = "log" name = "log"
version = "0.4.20" version = "0.4.21"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
[[package]] [[package]]
name = "pio" name = "pio"

View File

@ -18,7 +18,7 @@ goblin = { version = "=0.6.1", default-features = false, features = [ "pe64", "a
bitflags = "2.4.2" bitflags = "2.4.2"
# 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.20", default-features = false, features = [ "max_level_info", "release_max_level_warn" ]} log = { version = "0.4.21", default-features = false, features = [ "max_level_info", "release_max_level_warn" ]}
[badges] [badges]
maintenance = { status = "actively-developed" } maintenance = { status = "actively-developed" }

View File

@ -8,7 +8,7 @@ publish = false
uefi = { version = "0.26.0", default-features = false, features = [ "alloc", "global_allocator" ] } uefi = { version = "0.26.0", default-features = false, features = [ "alloc", "global_allocator" ] }
uefi-services = { version = "0.23.0", default-features = false, features = [ "panic_handler", "logger" ] } uefi-services = { version = "0.23.0", default-features = false, features = [ "panic_handler", "logger" ] }
# 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.20", default-features = false, features = [ "max_level_info", "release_max_level_warn" ]} log = { version = "0.4.21", 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.8", default-features = false, features = ["force-soft"], optional = true } sha2 = { version = "0.10.8", default-features = false, features = ["force-soft"], optional = true }
# Our linux-bootloader crate containing most of what we need # Our linux-bootloader crate containing most of what we need