From 02be83efbffe27754090dd701baea716443f1ef1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 8 Aug 2023 17:11:05 +0000 Subject: [PATCH] Bump rstest from 0.17.0 to 0.18.1 (#9782) --- Cargo.lock | 36 ++++++------------------------------ Cargo.toml | 2 +- crates/nu-cli/Cargo.toml | 2 +- crates/nu-command/Cargo.toml | 2 +- crates/nu-parser/Cargo.toml | 2 +- 5 files changed, 10 insertions(+), 34 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 92e485a063..53e45739a8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2530,7 +2530,7 @@ dependencies = [ "openssl", "pretty_assertions", "reedline", - "rstest 0.17.0", + "rstest", "serde_json", "serial_test", "signal-hook", @@ -2575,7 +2575,7 @@ dependencies = [ "once_cell", "percent-encoding", "reedline", - "rstest 0.17.0", + "rstest", "sysinfo", "unicode-segmentation", ] @@ -2733,7 +2733,7 @@ dependencies = [ "rayon", "regex", "roxmltree", - "rstest 0.17.0", + "rstest", "rusqlite", "same-file", "serde", @@ -2818,7 +2818,7 @@ dependencies = [ "nu-path", "nu-plugin", "nu-protocol", - "rstest 0.17.0", + "rstest", "serde_json", ] @@ -2866,7 +2866,7 @@ dependencies = [ "nu-test-support", "nu-utils", "num-format", - "rstest 0.18.1", + "rstest", "serde", "serde_json", "strum 0.25.0", @@ -4220,16 +4220,6 @@ dependencies = [ "xmlparser", ] -[[package]] -name = "rstest" -version = "0.17.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "de1bb486a691878cd320c2f0d319ba91eeaa2e894066d8b5f8f117c000e9d962" -dependencies = [ - "rstest_macros 0.17.0", - "rustc_version", -] - [[package]] name = "rstest" version = "0.18.1" @@ -4238,24 +4228,10 @@ checksum = "2b96577ca10cb3eade7b337eb46520108a67ca2818a24d0b63f41fd62bc9651c" dependencies = [ "futures", "futures-timer", - "rstest_macros 0.18.1", + "rstest_macros", "rustc_version", ] -[[package]] -name = "rstest_macros" -version = "0.17.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "290ca1a1c8ca7edb7c3283bd44dc35dd54fdec6253a3912e201ba1072018fca8" -dependencies = [ - "cfg-if", - "proc-macro2", - "quote", - "rustc_version", - "syn 1.0.109", - "unicode-ident", -] - [[package]] name = "rstest_macros" version = "0.18.1" diff --git a/Cargo.toml b/Cargo.toml index 1f0b62c23b..5a4d44d1de 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -100,7 +100,7 @@ nu-test-support = { path = "./crates/nu-test-support", version = "0.83.2" } assert_cmd = "2.0" criterion = "0.5" pretty_assertions = "1.4" -rstest = { version = "0.17", default-features = false } +rstest = { version = "0.18", default-features = false } serial_test = "2.0" tempfile = "3.7" diff --git a/crates/nu-cli/Cargo.toml b/crates/nu-cli/Cargo.toml index ad1a0a9b67..5d3453c973 100644 --- a/crates/nu-cli/Cargo.toml +++ b/crates/nu-cli/Cargo.toml @@ -13,7 +13,7 @@ bench = false [dev-dependencies] nu-cmd-lang = { path = "../nu-cmd-lang", version = "0.83.2" } nu-test-support = { path = "../nu-test-support", version = "0.83.2" } -rstest = { version = "0.17.0", default-features = false } +rstest = { version = "0.18.1", default-features = false } [dependencies] nu-cmd-base = { path = "../nu-cmd-base", version = "0.83.2" } diff --git a/crates/nu-command/Cargo.toml b/crates/nu-command/Cargo.toml index 9cc78a57c4..8aec2363d3 100644 --- a/crates/nu-command/Cargo.toml +++ b/crates/nu-command/Cargo.toml @@ -131,4 +131,4 @@ dirs-next = "2.0" mockito = { version = "1.1", default-features = false } quickcheck = "1.0" quickcheck_macros = "1.0" -rstest = { version = "0.17", default-features = false } +rstest = { version = "0.18", default-features = false } diff --git a/crates/nu-parser/Cargo.toml b/crates/nu-parser/Cargo.toml index 2afa5911eb..482a127cbc 100644 --- a/crates/nu-parser/Cargo.toml +++ b/crates/nu-parser/Cargo.toml @@ -23,7 +23,7 @@ log = "0.4" serde_json = "1.0" [dev-dependencies] -rstest = { version = "0.17", default-features = false } +rstest = { version = "0.18", default-features = false } [features] plugin = ["nu-plugin"]