From e4446b908c629ac03b7a943006b2819832077c08 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 28 May 2024 11:42:46 +0200 Subject: [PATCH] Update nix requirement from 0.27 to 0.29 (#2252) --- updated-dependencies: - dependency-name: nix dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- libafl/Cargo.toml | 2 +- libafl_bolts/Cargo.toml | 2 +- libafl_frida/Cargo.toml | 2 +- libafl_nyx/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/libafl/Cargo.toml b/libafl/Cargo.toml index 6764d74fe0..80c028040d 100644 --- a/libafl/Cargo.toml +++ b/libafl/Cargo.toml @@ -161,7 +161,7 @@ backtrace = { version = "0.3", optional = true } # Used to get the stacktrace in typed-builder = { version = "0.18", optional = true } # Implement the builder pattern at compiletime serde_json = { version = "1.0", optional = true, default-features = false, features = ["alloc"] } -nix = { version = "0.27", optional = true } +nix = { version = "0.29", optional = true } regex = { version = "1", optional = true } uuid = { version = "1.4", optional = true, features = ["serde", "v4"] } libm = "0.2.2" diff --git a/libafl_bolts/Cargo.toml b/libafl_bolts/Cargo.toml index f7ddd4261e..6a08a621d7 100644 --- a/libafl_bolts/Cargo.toml +++ b/libafl_bolts/Cargo.toml @@ -110,7 +110,7 @@ serde_json = { version = "1.0", optional = true, default-features = false, featu miniz_oxide = { version = "0.7.1", optional = true } hostname = { version = "^0.4", optional = true } # Is there really no gethostname in the stdlib? rand_core = { version = "0.6", optional = true } -nix = { version = "0.27", default-features = false, optional = true, features = ["signal", "socket", "poll"] } +nix = { version = "0.29", default-features = false, optional = true, features = ["signal", "socket", "poll"] } uuid = { version = "1.4", optional = true, features = ["serde", "v4"] } clap = { version = "4.5", features = ["derive", "wrap_help"], optional = true } # CLI parsing, for libafl_bolts::cli / the `cli` feature log = "0.4.20" diff --git a/libafl_frida/Cargo.toml b/libafl_frida/Cargo.toml index 4bd7eff97f..c9a27cea97 100644 --- a/libafl_frida/Cargo.toml +++ b/libafl_frida/Cargo.toml @@ -51,7 +51,7 @@ libafl_targets = { path = "../libafl_targets", version = "0.12.0", features = [ "sancov_cmplog", ] } -nix = { version = "0.27", features = ["mman"] } +nix = { version = "0.29", features = ["mman"] } libc = "0.2" hashbrown = "0.14" rangemap = "1.3" diff --git a/libafl_nyx/Cargo.toml b/libafl_nyx/Cargo.toml index 89a2e50592..d4467299ec 100644 --- a/libafl_nyx/Cargo.toml +++ b/libafl_nyx/Cargo.toml @@ -19,5 +19,5 @@ libafl = { path = "../libafl", version = "0.12.0", features = ["std", "libafl_de libafl_bolts = { path = "../libafl_bolts", version = "0.12.0", features = ["std", "libafl_derive", "frida_cli" ]} libafl_targets = { path = "../libafl_targets", version = "0.12.0", features = ["std", "sancov_cmplog"] } -nix = { version = "0.28.0", features = ["fs"] } +nix = { version = "0.29.0", features = ["fs"] } typed-builder = "0.18.1"