Skip to content

Commit c07ddbc

Browse files
authored
fix!: Update minimum supported Rust version to 1.85 (#80)
1 parent 6af97c9 commit c07ddbc

3 files changed

Lines changed: 48 additions & 39 deletions

File tree

Cargo.lock

Lines changed: 42 additions & 33 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = ["The AccessKit contributors"]
55
license = "MIT OR Apache-2.0"
66
publish = false
77
edition = "2021"
8-
rust-version = "1.77.2"
8+
rust-version = "1.85"
99

1010
[lib]
1111
name = "accesskit"
@@ -16,16 +16,16 @@ doc = false
1616
cbindgen = []
1717

1818
[dependencies]
19-
accesskit = "0.23.0"
19+
accesskit = "0.24.0"
2020

2121
[target.'cfg(target_os = "windows")'.dependencies]
22-
accesskit_windows = "0.31.1"
22+
accesskit_windows = "0.32.0"
2323

2424
[target.'cfg(target_os = "macos")'.dependencies]
25-
accesskit_macos = "0.24.1"
25+
accesskit_macos = "0.25.0"
2626

2727
[target.'cfg(any(target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "openbsd", target_os = "netbsd"))'.dependencies]
28-
accesskit_unix = "0.19.1"
28+
accesskit_unix = "0.20.0"
2929

3030
[profile.release]
3131
lto = true

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ cc = meson.get_compiler('c')
2828
# MSRV - Minimum Supported Rust Version
2929
# If you change this, please update these:
3030
# - the "rust-version" value in Cargo.toml
31-
msrv = '1.77.2'
31+
msrv = '1.85'
3232
cargo = find_program('cargo', version:'>= @0@'.format(msrv))
3333
cargo_wrapper = find_program('meson/cargo_wrapper.py', native: true)
3434
rustc = find_program('rustc', version:'>= @0@'.format(msrv))

0 commit comments

Comments
 (0)