diff --git a/Cargo.lock b/Cargo.lock index 44ef36c5..8684e213 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1011,6 +1011,15 @@ dependencies = [ "libc", ] +[[package]] +name = "rlimit" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f35ee2729c56bb610f6dba436bf78135f728b7373bdffae2ec815b2d3eb98cc3" +dependencies = [ + "libc", +] + [[package]] name = "roff" version = "0.2.2" @@ -1362,7 +1371,7 @@ dependencies = [ "pretty_assertions", "rand", "regex", - "rlimit", + "rlimit 0.11.0", "serde", "serde_json", "tempfile", @@ -1718,7 +1727,7 @@ dependencies = [ "pretty_assertions", "rand", "regex", - "rlimit", + "rlimit 0.10.2", "tempfile", "uucore 0.5.0", "xattr", diff --git a/Cargo.toml b/Cargo.toml index 2a3ec143..4a24f0a2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -134,7 +134,7 @@ nix = { workspace = true, features = ["term"] } xattr = { workspace = true } [target.'cfg(any(target_os = "linux", target_os = "android"))'.dev-dependencies] -rlimit = "0.10.1" +rlimit = "0.11.0" [build-dependencies] phf_codegen = { workspace = true }