From 140b246794e485bffbdf3356f483ae0b18e54473 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 29 Apr 2025 17:11:49 +0000 Subject: [PATCH] build: Bump landlock from 0.4.0 to 0.4.2 Bumps [landlock](https://github.com/landlock-lsm/rust-landlock) from 0.4.0 to 0.4.2. - [Release notes](https://github.com/landlock-lsm/rust-landlock/releases) - [Changelog](https://github.com/landlock-lsm/rust-landlock/blob/main/CHANGELOG.md) - [Commits](https://github.com/landlock-lsm/rust-landlock/compare/v0.4.0...v0.4.2) --- updated-dependencies: - dependency-name: landlock dependency-version: 0.4.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 6 +++--- vmm/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index decd400bf..59da969ce 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1120,13 +1120,13 @@ dependencies = [ [[package]] name = "landlock" -version = "0.4.0" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dafb8a4afee64f167eb2b52d32f0eea002e41a7a6450e68c799c8ec3a81a634c" +checksum = "b3d2ef408b88e913bfc6594f5e693d57676f6463ded7d8bf994175364320c706" dependencies = [ "enumflags2", "libc", - "thiserror 1.0.62", + "thiserror 2.0.6", ] [[package]] diff --git a/vmm/Cargo.toml b/vmm/Cargo.toml index 9dc9f97c0..d0135b200 100644 --- a/vmm/Cargo.toml +++ b/vmm/Cargo.toml @@ -46,7 +46,7 @@ hex = { version = "0.4.3", optional = true } hypervisor = { path = "../hypervisor" } igvm = { version = "0.3.3", optional = true } igvm_defs = { version = "0.3.1", optional = true } -landlock = "0.4.0" +landlock = "0.4.2" libc = "0.2.167" linux-loader = { workspace = true, features = ["bzimage", "elf", "pe"] } log = "0.4.22"