fix(deps): update all dependencies
This commit is contained in:
parent
eeb45682dd
commit
1d4df708bd
|
@ -454,9 +454,9 @@ checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c"
|
|||
|
||||
[[package]]
|
||||
name = "log"
|
||||
version = "0.4.20"
|
||||
version = "0.4.21"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
|
||||
checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
|
||||
|
||||
[[package]]
|
||||
name = "lzbt-systemd"
|
||||
|
@ -859,9 +859,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "walkdir"
|
||||
version = "2.4.0"
|
||||
version = "2.5.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee"
|
||||
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
||||
dependencies = [
|
||||
"same-file",
|
||||
"winapi-util",
|
||||
|
|
|
@ -9,7 +9,7 @@ edition = "2021"
|
|||
anyhow = "1.0.80"
|
||||
base32ct = { version = "0.2.0", features = ["alloc"] }
|
||||
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"] }
|
||||
lanzaboote_tool = { path = "../shared" }
|
||||
indoc = "2.0.4"
|
||||
|
@ -24,4 +24,4 @@ expect-test = "1.4.1"
|
|||
filetime = "0.2.23"
|
||||
rand = "0.8.5"
|
||||
goblin = "0.7.1"
|
||||
walkdir = "2.4.0"
|
||||
walkdir = "2.5.0"
|
||||
|
|
|
@ -126,9 +126,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "log"
|
||||
version = "0.4.20"
|
||||
version = "0.4.21"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
|
||||
checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
|
||||
|
||||
[[package]]
|
||||
name = "pio"
|
||||
|
|
|
@ -18,7 +18,7 @@ goblin = { version = "=0.6.1", default-features = false, features = [ "pe64", "a
|
|||
bitflags = "2.4.2"
|
||||
|
||||
# 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]
|
||||
maintenance = { status = "actively-developed" }
|
||||
|
|
|
@ -8,7 +8,7 @@ publish = false
|
|||
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" ] }
|
||||
# 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.
|
||||
sha2 = { version = "0.10.8", default-features = false, features = ["force-soft"], optional = true }
|
||||
# Our linux-bootloader crate containing most of what we need
|
||||
|
|
Loading…
Reference in New Issue