diff --git a/Cargo.lock b/Cargo.lock index 33fb6d5314..5f054c4b52 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3939,9 +3939,9 @@ dependencies = [ [[package]] name = "proptest" -version = "1.0.0" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e0d9cc07f18492d879586c92b485def06bc850da3118075cd45d50e9c95b0e5" +checksum = "29f1b898011ce9595050a68e60f90bad083ff2987a695a42357134c8381fba70" dependencies = [ "bit-set", "bitflags", @@ -3955,6 +3955,7 @@ dependencies = [ "regex-syntax", "rusty-fork", "tempfile", + "unarray", ] [[package]] @@ -5425,6 +5426,12 @@ version = "2.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "46b0c16eadfb312c7acd6970fc97d1f3152eb536714a2ff72ca09a92cae6fa67" +[[package]] +name = "unarray" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94" + [[package]] name = "unicase" version = "2.6.0" diff --git a/crates/nu-command/Cargo.toml b/crates/nu-command/Cargo.toml index d055306700..600c0669a4 100644 --- a/crates/nu-command/Cargo.toml +++ b/crates/nu-command/Cargo.toml @@ -164,7 +164,7 @@ nu-test-support = { path = "../nu-test-support", version = "0.75.1" } dirs-next = "2.0.0" hamcrest2 = "0.3.0" -proptest = "1.0.0" +proptest = "1.1.0" quickcheck = "1.0.3" quickcheck_macros = "1.0.0" rstest = { version = "0.15.0", default-features = false }