From 0a9d14fcb3bb1552d8d49be6a352ee3997afd3ca Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 12 Feb 2023 18:34:09 -0800 Subject: [PATCH] Bump rstest from 0.15.0 to 0.16.0 (#8064) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [//]: # (dependabot-start) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- [//]: # (dependabot-end) Bumps [rstest](https://github.com/la10736/rstest) from 0.15.0 to 0.16.0.
Release notes

Sourced from rstest's releases.

0.16.0

Use values expression to define test names.

Changelog

Sourced from rstest's changelog.

[0.16.0] 2022/11/27

Changed

Fixed

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=rstest&package-manager=cargo&previous-version=0.15.0&new-version=0.16.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 9 +++++---- Cargo.toml | 2 +- crates/nu-cli/Cargo.toml | 2 +- crates/nu-command/Cargo.toml | 2 +- 4 files changed, 8 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5f054c4b5..514d2060a 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 cef98a101..71cf431e9 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 7e068ccc7..08d64cc8b 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 600c0669a..6545a7a48 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 }