Merge pull request #329 from nix-community/renovate/all
fix(deps): update all dependencies
This commit is contained in:
commit
ded8d23709
|
@ -6,11 +6,11 @@ edition = "2021"
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1.0.80"
|
anyhow = "1.0.81"
|
||||||
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.21", features = ["std"] }
|
log = { version = "0.4.21", features = ["std"] }
|
||||||
clap = { version = "4.5.2", features = ["derive"] }
|
clap = { version = "4.5.3", features = ["derive"] }
|
||||||
lanzaboote_tool = { path = "../shared" }
|
lanzaboote_tool = { path = "../shared" }
|
||||||
indoc = "2.0.4"
|
indoc = "2.0.4"
|
||||||
serde_json = "1.0.114"
|
serde_json = "1.0.114"
|
||||||
|
|
|
@ -10,9 +10,9 @@ checksum = "dc827186963e592360843fb5ba4b973e145841266c1357f7180c43526f2e5b61"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "bitflags"
|
name = "bitflags"
|
||||||
version = "2.4.2"
|
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 = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf"
|
checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "block-buffer"
|
name = "block-buffer"
|
||||||
|
@ -274,9 +274,9 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "uefi"
|
name = "uefi"
|
||||||
version = "0.26.0"
|
version = "0.27.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "07ead9f748a4646479b850add36b527113a80e80a7e0f44d7b0334291850dcc5"
|
checksum = "89ee9c34c612d45735fef4c478450cd2a1e64e59ad1e5988e5024af53914a854"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bitflags",
|
"bitflags",
|
||||||
"log",
|
"log",
|
||||||
|
@ -311,9 +311,9 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "uefi-services"
|
name = "uefi-services"
|
||||||
version = "0.23.0"
|
version = "0.24.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "a79fcb420624743c895bad0f9480fbc2f64e7c8d8611fb1ada6bdd799942feb4"
|
checksum = "292d48d6dae6fb4a5f960bab64a72e9dcdbe3db7dd706ae0ace5de24580d2840"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"cfg-if",
|
"cfg-if",
|
||||||
"log",
|
"log",
|
||||||
|
|
|
@ -12,10 +12,10 @@ repository = "https://github.com/nix-community/lanzaboote/"
|
||||||
rust-version = "1.68"
|
rust-version = "1.68"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
uefi = { version = "0.26.0", default-features = false, features = [ "alloc", "global_allocator" ] }
|
uefi = { version = "0.27.0", default-features = false, features = [ "alloc", "global_allocator" ] }
|
||||||
# Update blocked by #237
|
# Update blocked by #237
|
||||||
goblin = { version = "=0.6.1", default-features = false, features = [ "pe64", "alloc" ]}
|
goblin = { version = "=0.6.1", default-features = false, features = [ "pe64", "alloc" ]}
|
||||||
bitflags = "2.4.2"
|
bitflags = "2.5.0"
|
||||||
|
|
||||||
# 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.21", 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" ]}
|
||||||
|
|
|
@ -7,7 +7,7 @@ edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
embedded-io = { version = "0.6.1", features = [ "alloc" ] }
|
embedded-io = { version = "0.6.1", features = [ "alloc" ] }
|
||||||
snafu = { version = "0.8.1", default-features = false }
|
snafu = { version = "0.8.2", default-features = false }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
cpio = "0.2.2"
|
cpio = "0.2.2"
|
||||||
|
|
|
@ -5,8 +5,8 @@ edition = "2021"
|
||||||
publish = false
|
publish = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
uefi = { version = "0.26.0", default-features = false, features = [ "alloc", "global_allocator" ] }
|
uefi = { version = "0.27.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.24.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.21", 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.
|
||||||
|
|
Loading…
Reference in New Issue