From 53f3438367da09bb256b75ed0d1782f749783e26 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 May 2024 01:39:14 +0000 Subject: [PATCH] Update nix requirement from 0.28 to 0.29 Updates the requirements on [nix](https://github.com/nix-rust/nix) to permit the latest version. - [Changelog](https://github.com/nix-rust/nix/blob/master/CHANGELOG.md) - [Commits](https://github.com/nix-rust/nix/compare/v0.28.0...v0.29.0) --- updated-dependencies: - dependency-name: nix dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- judge-core/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/judge-core/Cargo.toml b/judge-core/Cargo.toml index 0e042f4..e7dd281 100644 --- a/judge-core/Cargo.toml +++ b/judge-core/Cargo.toml @@ -10,7 +10,7 @@ description = "A judge library for online judge system" [dependencies] libc = "0.2" libseccomp = "0.3" -nix = { version = "0.28", features = ["event", "fs", "process", "resource"] } +nix = { version = "0.29", features = ["event", "fs", "process", "resource"] } log = "0.4" anyhow = "1.0" serde = "1"