From 1e19827c5ac17435e0807fb9e28091a53dc6fb4f Mon Sep 17 00:00:00 2001 From: Ben Beasley Date: Mon, 2 Dec 2024 22:54:32 -0500 Subject: [PATCH] Update rstest and rstest_reuse; bump MSRV to 1.67.1 (#716) --- .github/workflows/build.yaml | 4 +-- .github/workflows/powerset.yaml | 2 +- Cargo.lock | 59 ++++++++++++++++----------------- Cargo.toml | 4 +-- README.md | 2 +- time-core/Cargo.toml | 2 +- time-macros/Cargo.toml | 2 +- time/Cargo.toml | 2 +- 8 files changed, 38 insertions(+), 39 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index dca25cc65..84f807291 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -51,7 +51,7 @@ jobs: strategy: matrix: rust: - - { version: "1.67.0", name: MSRV } + - { version: "1.67.1", name: MSRV } - { version: stable, name: stable } kind: - name: no_std @@ -147,7 +147,7 @@ jobs: strategy: matrix: rust: - - { version: "1.67.0", name: MSRV } + - { version: "1.67.1", name: MSRV } - { version: stable, name: stable } os: - { name: Ubuntu, value: ubuntu-latest } diff --git a/.github/workflows/powerset.yaml b/.github/workflows/powerset.yaml index 479c036bf..b8b38eafe 100644 --- a/.github/workflows/powerset.yaml +++ b/.github/workflows/powerset.yaml @@ -49,7 +49,7 @@ jobs: strategy: matrix: rust: - - { version: "1.67.0", name: MSRV } + - { version: "1.67.1", name: MSRV } - { version: stable, name: stable } kind: - name: no_std diff --git a/Cargo.lock b/Cargo.lock index fac6b886d..7a5356072 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -324,9 +324,9 @@ checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" [[package]] name = "proc-macro2" -version = "1.0.78" +version = "1.0.89" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae" +checksum = "f139b0662de085916d1fb67d2b4169d1addddda1919e696f3252b740b629986e" dependencies = [ "unicode-ident", ] @@ -353,9 +353,9 @@ dependencies = [ [[package]] name = "quote" -version = "1.0.35" +version = "1.0.37" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef" +checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af" dependencies = [ "proc-macro2", ] @@ -392,9 +392,9 @@ dependencies = [ [[package]] name = "regex" -version = "1.10.3" +version = "1.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15" +checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191" dependencies = [ "aho-corasick", "memchr", @@ -404,9 +404,9 @@ dependencies = [ [[package]] name = "regex-automata" -version = "0.4.5" +version = "0.4.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5bb987efffd3c6d0d8f5f89510bb458559eab11e4f869acb20bf845e016259cd" +checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908" dependencies = [ "aho-corasick", "memchr", @@ -415,21 +415,21 @@ dependencies = [ [[package]] name = "regex-syntax" -version = "0.8.2" +version = "0.8.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" +checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c" [[package]] name = "relative-path" -version = "1.9.2" +version = "1.9.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e898588f33fdd5b9420719948f9f2a32c922a246964576f71ba7f24f80610fbc" +checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2" [[package]] name = "rstest" -version = "0.18.2" +version = "0.23.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97eeab2f3c0a199bc4be135c36c924b6590b88c377d416494288c14f2db30199" +checksum = "0a2c585be59b6b5dd66a9d2084aa1d8bd52fbdb806eafdeffb52791147862035" dependencies = [ "rstest_macros", "rustc_version", @@ -437,9 +437,9 @@ dependencies = [ [[package]] name = "rstest_macros" -version = "0.18.2" +version = "0.23.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d428f8247852f894ee1be110b375111b586d4fa431f6c46e64ba5a0dcccbe605" +checksum = "825ea780781b15345a146be27eaefb05085e337e869bff01b4306a4fd4a9ad5a" dependencies = [ "cfg-if", "glob", @@ -448,27 +448,26 @@ dependencies = [ "regex", "relative-path", "rustc_version", - "syn 2.0.48", + "syn 2.0.87", "unicode-ident", ] [[package]] name = "rstest_reuse" -version = "0.6.0" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "88530b681abe67924d42cca181d070e3ac20e0740569441a9e35a7cedd2b34a4" +checksum = "b3a8fb4672e840a587a66fc577a5491375df51ddb88f2a2c2a792598c326fe14" dependencies = [ "quote", "rand", - "rustc_version", - "syn 2.0.48", + "syn 2.0.87", ] [[package]] name = "rustc_version" -version = "0.4.0" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366" +checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" dependencies = [ "semver", ] @@ -524,7 +523,7 @@ checksum = "33c85360c95e7d137454dc81d9a4ed2b8efd8fbe19cee57357b32b9771fccb67" dependencies = [ "proc-macro2", "quote", - "syn 2.0.48", + "syn 2.0.87", ] [[package]] @@ -560,9 +559,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.48" +version = "2.0.87" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f" +checksum = "25aa4ce346d03a6dcd68dd8b4010bcb74e54e62c90c573f394c46eae99aba32d" dependencies = [ "proc-macro2", "quote", @@ -642,9 +641,9 @@ dependencies = [ [[package]] name = "unicode-ident" -version = "1.0.12" +version = "1.0.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" +checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe" [[package]] name = "walkdir" @@ -683,7 +682,7 @@ dependencies = [ "once_cell", "proc-macro2", "quote", - "syn 2.0.48", + "syn 2.0.87", "wasm-bindgen-shared", ] @@ -705,7 +704,7 @@ checksum = "bae1abb6806dc1ad9e560ed242107c0f6c84335f1749dd4e8ddb012ebd5e25a7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.48", + "syn 2.0.87", "wasm-bindgen-backend", "wasm-bindgen-shared", ] diff --git a/Cargo.toml b/Cargo.toml index 38214cb09..6b78d96cc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,8 +20,8 @@ powerfmt = { version = "0.2.0", default-features = false } quickcheck = { version = "1.0.3", default-features = false } quickcheck_macros = "1.0.0" rand = { version = "0.8.4", default-features = false } -rstest = { version = "0.18.2", default-features = false } -rstest_reuse = "0.6.0" +rstest = { version = "0.23.0", default-features = false } +rstest_reuse = "0.7.0" # ^1.0.184 due to serde-rs/serde#2538 serde = { version = "1.0.184", default-features = false } serde_json = "1.0.68" diff --git a/README.md b/README.md index b2991f93d..221925636 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # time -[![minimum rustc: 1.67](https://img.shields.io/badge/minimum%20rustc-1.67-yellowgreen?logo=rust&style=flat-square)](https://www.whatrustisit.com) +[![minimum rustc: 1.67.1](https://img.shields.io/badge/minimum%20rustc-1.67.1-yellowgreen?logo=rust&style=flat-square)](https://www.whatrustisit.com) [![version](https://img.shields.io/crates/v/time?color=blue&logo=rust&style=flat-square)](https://crates.io/crates/time) [![build status](https://img.shields.io/github/actions/workflow/status/time-rs/time/build.yaml?branch=main&style=flat-square)](https://github.com/time-rs/time/actions) [![codecov](https://codecov.io/gh/time-rs/time/branch/main/graph/badge.svg?token=yt4XSmQNKQ)](https://codecov.io/gh/time-rs/time) diff --git a/time-core/Cargo.toml b/time-core/Cargo.toml index c11597177..002bf66f4 100644 --- a/time-core/Cargo.toml +++ b/time-core/Cargo.toml @@ -3,7 +3,7 @@ name = "time-core" version = "0.1.2" authors = ["Jacob Pratt ", "Time contributors"] edition = "2021" -rust-version = "1.67.0" +rust-version = "1.67.1" repository = "https://github.com/time-rs/time" keywords = ["date", "time", "calendar", "duration"] categories = ["date-and-time"] diff --git a/time-macros/Cargo.toml b/time-macros/Cargo.toml index 3451de834..1a1f42441 100644 --- a/time-macros/Cargo.toml +++ b/time-macros/Cargo.toml @@ -3,7 +3,7 @@ name = "time-macros" version = "0.2.18" authors = ["Jacob Pratt ", "Time contributors"] edition = "2021" -rust-version = "1.67.0" +rust-version = "1.67.1" repository = "https://github.com/time-rs/time" keywords = ["date", "time", "calendar", "duration"] categories = ["date-and-time"] diff --git a/time/Cargo.toml b/time/Cargo.toml index 00f46f457..b7cd0a5f1 100644 --- a/time/Cargo.toml +++ b/time/Cargo.toml @@ -3,7 +3,7 @@ name = "time" version = "0.3.36" authors = ["Jacob Pratt ", "Time contributors"] edition = "2021" -rust-version = "1.67.0" +rust-version = "1.67.1" repository = "https://github.com/time-rs/time" homepage = "https://time-rs.github.io" keywords = ["date", "time", "calendar", "duration"]