Skip to content

Commit 3870dae

Browse files
committed
bump MSRV to 1.61
1 parent 9452e27 commit 3870dae

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
- name: test stable --release
1717
run: cargo +stable test --release --verbose
1818
# MSRV
19-
- uses: dtolnay/rust-toolchain@1.58.1
19+
- uses: dtolnay/rust-toolchain@1.61.0
2020
- name: build MSRV
21-
run: cargo +1.58.1 build --verbose
21+
run: cargo +1.61.0 build --verbose
2222
- name: test MSRV
23-
run: cargo +1.58.1 test --verbose
23+
run: cargo +1.61.0 test --verbose
2424
- name: test MSRV --release
25-
run: cargo +1.58.1 test --release --verbose
25+
run: cargo +1.61.0 test --release --verbose

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repository = "https://github.com/nrxus/faux"
99
edition = "2021"
1010
keywords = ["mock", "mocking", "test", "testing", "faux"]
1111
readme = "README.md"
12-
rust-version = "1.58"
12+
rust-version = "1.61"
1313

1414
[dependencies]
1515
faux_macros = { path = "faux_macros", version = "0.1.10" }

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# faux   [![Latest Version]][crates.io] [![rustc 1.58+]][Rust 1.58] [![docs]][api docs] ![][build]
1+
# faux   [![Latest Version]][crates.io] [![rustc 1.61+]][Rust 1.61] [![docs]][api docs] ![][build]
22

33
A library to create [mocks] out of structs.
44

@@ -227,8 +227,8 @@ methods in structs.
227227

228228
[Latest Version]: https://img.shields.io/crates/v/faux.svg
229229
[crates.io]: https://crates.io/crates/faux
230-
[rustc 1.58+]: https://img.shields.io/badge/rustc-1.58+-blue.svg
231-
[Rust 1.58]: https://blog.rust-lang.org/2022/01/13/Rust-1.58.0.html
230+
[rustc 1.61+]: https://img.shields.io/badge/rustc-1.61+-blue.svg
231+
[Rust 1.61]: https://blog.rust-lang.org/2022/05/19/Rust-1.61.0.html
232232
[Latest Version]: https://img.shields.io/crates/v/faux.svg
233233
[docs]: https://img.shields.io/badge/api-docs-blue.svg
234234
[api docs]: https://docs.rs/faux/

faux_macros/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ description = "Implementations for #[create], #[methods], when!"
88
homepage = "https://github.com/nrxus/faux"
99
repository = "https://github.com/nrxus/faux"
1010
keywords = ["mock", "mocking", "test", "testing", "faux"]
11-
rust-version = "1.58"
11+
rust-version = "1.61"
1212

1313
[dependencies]
1414
syn = { version = "2", features = ["full", "extra-traits"] }
15-
quote = "1.0.8"
16-
proc-macro2 = "1.0.24"
15+
quote = "1"
16+
proc-macro2 = "1"
1717
darling = "0.20"
1818
uuid = { version = "1", features = ["v4"] }
1919

0 commit comments

Comments
 (0)