diff --git a/Cargo.lock b/Cargo.lock index 5f054c4b52..514d2060a6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4322,9 +4322,9 @@ dependencies = [ [[package]] name = "rstest" -version = "0.15.0" +version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e9c9dc66cc29792b663ffb5269be669f1613664e69ad56441fdb895c2347b930" +checksum = "b07f2d176c472198ec1e6551dc7da28f1c089652f66a7b722676c2238ebc0edf" dependencies = [ "rstest_macros", "rustc_version 0.4.0", @@ -4332,15 +4332,16 @@ dependencies = [ [[package]] name = "rstest_macros" -version = "0.14.0" +version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5015e68a0685a95ade3eee617ff7101ab6a3fc689203101ca16ebc16f2b89c66" +checksum = "7229b505ae0706e64f37ffc54a9c163e11022a6636d58fe1f3f52018257ff9f7" dependencies = [ "cfg-if 1.0.0", "proc-macro2", "quote", "rustc_version 0.4.0", "syn", + "unicode-ident", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index cef98a1019..71cf431e9b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -87,7 +87,7 @@ criterion = "0.4" pretty_assertions = "1.0.0" serial_test = "1.0.0" hamcrest2 = "0.3.0" -rstest = { version = "0.15.0", default-features = false } +rstest = { version = "0.16.0", default-features = false } itertools = "0.10.3" [features] diff --git a/crates/nu-cli/Cargo.toml b/crates/nu-cli/Cargo.toml index 7e068ccc7c..08d64cc8b7 100644 --- a/crates/nu-cli/Cargo.toml +++ b/crates/nu-cli/Cargo.toml @@ -13,7 +13,7 @@ bench = false [dev-dependencies] nu-test-support = { path = "../nu-test-support", version = "0.75.1" } nu-command = { path = "../nu-command", version = "0.75.1" } -rstest = { version = "0.15.0", default-features = false } +rstest = { version = "0.16.0", default-features = false } [dependencies] nu-engine = { path = "../nu-engine", version = "0.75.1" } diff --git a/crates/nu-command/Cargo.toml b/crates/nu-command/Cargo.toml index 600c0669a4..6545a7a48e 100644 --- a/crates/nu-command/Cargo.toml +++ b/crates/nu-command/Cargo.toml @@ -167,4 +167,4 @@ hamcrest2 = "0.3.0" proptest = "1.1.0" quickcheck = "1.0.3" quickcheck_macros = "1.0.0" -rstest = { version = "0.15.0", default-features = false } +rstest = { version = "0.16.0", default-features = false }