Skip to content

Commit

Permalink
fix(deps): update all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Oct 15, 2023
1 parent 82530e5 commit c9341c5
Show file tree
Hide file tree
Showing 6 changed files with 50 additions and 61 deletions.
57 changes: 23 additions & 34 deletions rust/tool/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions rust/tool/shared/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,25 +7,25 @@ edition.workspace = true

[dependencies]
anyhow = "1"
clap = { version = "4.3", features = ["derive"] }
clap = { version = "4.4", features = ["derive"] }
goblin = "0.7"
nix = { version = "0.26", default-features = false, features = [ "fs" ] }
nix = { version = "0.27", default-features = false, features = [ "fs" ] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tempfile = "3.6.0"
tempfile = "3.8.0"
bootspec = "1"
walkdir = "2"
time = "0.3"
sha2 = "0.10"
# Keep the fastrand version aligned with the one from tempfile to avoid two
# different versions.
fastrand = "2.0.0"
fastrand = "2.0.1"
log = { version = "0.4", features = ["std"] }
stderrlog = "0.5"
indoc = "2"

[dev-dependencies]
assert_cmd = "2.0.12"
expect-test = "1.4.1"
filetime = "0.2.21"
filetime = "0.2.22"
rand = "0.8.5"
26 changes: 13 additions & 13 deletions rust/tool/systemd/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,23 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow = "1.0.71"
anyhow = "1.0.75"
base32ct = { version = "0.2.0", features = ["alloc"] }
stderrlog = "0.5.4"
log = { version = "0.4.18", features = ["std"] }
clap = { version = "4.3.1", features = ["derive"] }
log = { version = "0.4.20", features = ["std"] }
clap = { version = "4.4.6", features = ["derive"] }
lanzaboote_tool = { path = "../shared" }
indoc = "2.0.1"
serde_json = "1.0.96"
sha2 = "0.10.6"
tempfile = "3.5.0"
nix = { version = "0.26.2", default-features = false, features = [ "fs" ] }
indoc = "2.0.4"
serde_json = "1.0.107"
sha2 = "0.10.8"
tempfile = "3.8.0"
nix = { version = "0.27.1", default-features = false, features = [ "fs" ] }

[dev-dependencies]
assert_cmd = "2.0.11"
assert_cmd = "2.0.12"
expect-test = "1.4.1"
filetime = "0.2.21"
filetime = "0.2.22"
rand = "0.8.5"
goblin = "0.6.1"
serde = { version = "1.0.163", features = ["derive"] }
walkdir = "2.3.3"
goblin = "0.7.1"
serde = { version = "1.0.189", features = ["derive"] }
walkdir = "2.4.0"
8 changes: 4 additions & 4 deletions rust/uefi/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions rust/uefi/linux-bootloader/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ rust-version = "1.68"
[dependencies]
uefi = { version = "0.25.0", default-features = false, features = [ "alloc", "global_allocator" ] }
# Update blocked by #237
goblin = { version = "=0.6.1", default-features = false, features = [ "pe64", "alloc" ]}
bitflags = "2.3.3"
goblin = { version = "=0.7.1", default-features = false, features = [ "pe64", "alloc" ]}
bitflags = "2.4.0"

# Even in debug builds, we don't enable the debug logs, because they generate a lot of spam from goblin.
log = { version = "0.4.19", default-features = false, features = [ "max_level_info", "release_max_level_warn" ]}
log = { version = "0.4.20", default-features = false, features = [ "max_level_info", "release_max_level_warn" ]}

[badges]
maintenance = { status = "actively-developed" }
4 changes: 2 additions & 2 deletions rust/uefi/stub/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ publish = false
uefi = { version = "0.25.0", default-features = false, features = [ "alloc", "global_allocator" ] }
uefi-services = { version = "0.22.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.19", default-features = false, features = [ "max_level_info", "release_max_level_warn" ]}
log = { version = "0.4.20", 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.7", 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
linux-bootloader = { path = "../linux-bootloader" }

Expand Down

0 comments on commit c9341c5

Please sign in to comment.