Skip to content

Commit fc622fe

Browse files
authored
fix: Update minimum supported Rust version to 1.75 (#457)
1 parent 96a7ca2 commit fc622fe

File tree

9 files changed

+6
-5
lines changed

9 files changed

+6
-5
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ When reporting an issue, in order to help the maintainers understand what the pr
1111

1212
When making a code contribution to AccessKit, before opening your pull request please make sure that:
1313

14-
- your patch builds with AccessKit's minimal supported Rust version (currently Rust 1.70)
14+
- your patch builds with AccessKit's minimal supported Rust version (currently Rust 1.75)
1515
- you added tests where applicable
1616
- you tested your modifications on all impacted platforms (see below)
1717
- you updated any relevant documentation

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ categories = ["gui"]
2222
edition = "2021"
2323
license = "MIT OR Apache-2.0"
2424
repository = "https://github.com/AccessKit/accesskit"
25-
rust-version = "1.70"
25+
rust-version = "1.75"
2626

2727
[profile.release]
2828
lto = true

common/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,3 @@ enumn = ["dep:enumn"]
2525
pyo3 = ["dep:pyo3"]
2626
serde = ["dep:serde", "enumn"]
2727
schemars = ["dep:schemars", "serde"]
28-

consumer/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@ rust-version.workspace = true
1414
[dependencies]
1515
accesskit = { version = "0.16.1", path = "../common" }
1616
immutable-chunkmap = "2.0.5"
17+

platforms/atspi-common/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,3 @@ atspi-common = { version = "0.3.0", default-features = false }
2121
serde = "1.0"
2222
thiserror = "1.0.39"
2323
zvariant = { version = "3", default-features = false }
24-

platforms/macos/Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,3 @@ objc2-app-kit = { version = "0.2.0", features = [
3434
"NSView",
3535
"NSWindow",
3636
] }
37-

platforms/unix/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,4 @@ tokio-stream = { version = "0.1.14", optional = true }
3636
version = "1.32.0"
3737
optional = true
3838
features = ["macros", "net", "rt", "sync", "time"]
39+

platforms/windows/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,4 @@ features = [
3737
once_cell = "1.13.0"
3838
scopeguard = "1.1.0"
3939
winit = "0.30"
40+

platforms/winit/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,4 @@ accesskit_unix = { version = "0.12.1", path = "../unix", optional = true, defaul
4040
version = "0.30"
4141
default-features = false
4242
features = ["x11", "wayland", "wayland-dlopen", "wayland-csd-adwaita"]
43+

0 commit comments

Comments
 (0)