From c08052704d12e864db3eed39ed9543e80296466a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 9 Apr 2024 18:41:10 -0300 Subject: [PATCH] chore(deps): update rust crate rstest to 0.19.0 (#61) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [rstest](https://togithub.com/la10736/rstest) | dev-dependencies | minor | `0.18.2` -> `0.19.0` | --- ### Release Notes
la10736/rstest (rstest) ### [`v0.19.0`](https://togithub.com/la10736/rstest/blob/HEAD/CHANGELOG.md#0190-202449) [Compare Source](https://togithub.com/la10736/rstest/compare/v0.18.2...v0.19.0) ##### Changed - Defined `rust-version` for each crate (see [#​227](https://togithub.com/la10736/rstest/issues/235)) ##### Fixed - `#[once]` fixtures now require the returned type to be [`Sync`](https://doc.rust-lang.org/std/marker/trait.Sync.html) to prevent UB when tests are executed in parallel. (see [#​235](https://togithub.com/la10736/rstest/issues/235) for more details) - `#[future(awt)]` and `#[awt]` now properly handle mutable (`mut`) parameters by treating futures as immutable and treating the awaited rebinding as mutable.
--- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/zharinov/verver). Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 1cbf5b0..968c110 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ license = "MIT" winnow = "0.6.5" [dev-dependencies] -rstest = "0.18.2" +rstest = "0.19.0" insta = { version = "1.38.0", features = ["yaml"] } serde = "1.0.197" itertools = "0.12.1"