Skip to content

Commit 1f14725

Browse files
authored
chore: bump msrv to 1.88 and update darling (#34)
darling requires rust 1.88
1 parent 8b311cd commit 1f14725

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@ jobs:
6767
RUSTDOCFLAGS: --cfg docsrs
6868
msrv:
6969
# check that we can build using the minimal rust version that is specified by this crate
70-
name: Check MSRV (1.64)
70+
name: Check MSRV (1.88)
7171
runs-on: ubuntu-latest
7272
steps:
7373
- uses: actions/checkout@v4
74-
- uses: dtolnay/rust-toolchain@1.64
74+
- uses: dtolnay/rust-toolchain@1.88
7575
- run: cargo check

Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ authors = ["Stephen M. Coakley <me@stephencoakley.com>", "The Ratatui Developers
77
license = "MIT"
88
version = "0.3.10"
99
edition = "2021"
10-
rust-version = "1.64"
10+
rust-version = "1.88"
1111
repository = "https://github.com/ratatui/instability"
1212

1313
[workspace.dependencies]
@@ -26,14 +26,14 @@ repository.workspace = true
2626
readme = "README.md"
2727

2828
[dependencies]
29-
darling = "0.20.10"
30-
indoc = "2.0.5"
31-
proc-macro2 = "1.0.92"
32-
quote = "1.0.37"
33-
syn = { version = "2.0.90", features = ["derive", "full"] }
29+
darling = "0.23"
30+
indoc = "2"
31+
proc-macro2 = "1.0.86"
32+
quote = "1.0.25"
33+
syn = { version = "2.0.15", features = ["derive", "full"] }
3434

3535
[dev-dependencies]
36-
pretty_assertions = "1.4.1"
36+
pretty_assertions = "1.4"
3737

3838
[lib]
3939
proc-macro = true

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Check out the [Docs] for detailed usage. See [instability-example] for a complet
4444

4545
## MSRV
4646

47-
The minimum supported Rust version (MSRV) is 1.64.0.
47+
The minimum supported Rust version (MSRV) is 1.88.0.
4848

4949
## License
5050

0 commit comments

Comments
 (0)