From 7e93d963fc56079904c0f88db503cea5fc896a83 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 19 May 2026 11:01:08 +0000 Subject: [PATCH] build(deps): update libseccomp requirement from 0.1 to 0.4 Updates the requirements on [libseccomp](https://github.com/libseccomp-rs/libseccomp-rs) to permit the latest version. - [Release notes](https://github.com/libseccomp-rs/libseccomp-rs/releases) - [Changelog](https://github.com/libseccomp-rs/libseccomp-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/libseccomp-rs/libseccomp-rs/compare/v0.1.0...v0.4.0) --- updated-dependencies: - dependency-name: libseccomp dependency-version: 0.4.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- adapters/file-read/Cargo.toml | 2 +- adapters/http-get/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/adapters/file-read/Cargo.toml b/adapters/file-read/Cargo.toml index 5b86986fc..c9e8a803b 100644 --- a/adapters/file-read/Cargo.toml +++ b/adapters/file-read/Cargo.toml @@ -11,7 +11,7 @@ repository = "https://github.com/provability-fabric/provability-fabric" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" sha2 = "0.10" -libseccomp = { version = "0.1", optional = true } +libseccomp = { version = "0.4", optional = true } libc = "0.2" [dev-dependencies] diff --git a/adapters/http-get/Cargo.toml b/adapters/http-get/Cargo.toml index d694192f2..8bc275b1c 100644 --- a/adapters/http-get/Cargo.toml +++ b/adapters/http-get/Cargo.toml @@ -14,7 +14,7 @@ reqwest = { version = "0.11", features = ["json"] } sha2 = "0.10" url = "2.4" tokio = { version = "1.0", features = ["full"] } -libseccomp = { version = "0.1", optional = true } +libseccomp = { version = "0.4", optional = true } libc = "0.2" [dev-dependencies]