Update nix requirement from 0.27 to 0.29 (#2252)

---
updated-dependencies:
- dependency-name: nix
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
dependabot[bot] 2024-05-28 11:42:46 +02:00 committed by GitHub
parent 2670049c2b
commit e4446b908c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 4 additions and 4 deletions

View File

@ -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"

View File

@ -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"

View File

@ -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"

View File

@ -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"