Skip to content

Commit

Permalink
fix: Update minimum supported Rust version to 1.75 (#457)
Browse files Browse the repository at this point in the history
  • Loading branch information
DataTriny authored Oct 1, 2024
1 parent 96a7ca2 commit fc622fe
Show file tree
Hide file tree
Showing 9 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ When reporting an issue, in order to help the maintainers understand what the pr

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

- your patch builds with AccessKit's minimal supported Rust version (currently Rust 1.70)
- your patch builds with AccessKit's minimal supported Rust version (currently Rust 1.75)
- you added tests where applicable
- you tested your modifications on all impacted platforms (see below)
- you updated any relevant documentation
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ categories = ["gui"]
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https:/AccessKit/accesskit"
rust-version = "1.70"
rust-version = "1.75"

[profile.release]
lto = true
Expand Down
1 change: 0 additions & 1 deletion common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,3 @@ enumn = ["dep:enumn"]
pyo3 = ["dep:pyo3"]
serde = ["dep:serde", "enumn"]
schemars = ["dep:schemars", "serde"]

1 change: 1 addition & 0 deletions consumer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ rust-version.workspace = true
[dependencies]
accesskit = { version = "0.16.1", path = "../common" }
immutable-chunkmap = "2.0.5"

1 change: 0 additions & 1 deletion platforms/atspi-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,3 @@ atspi-common = { version = "0.3.0", default-features = false }
serde = "1.0"
thiserror = "1.0.39"
zvariant = { version = "3", default-features = false }

1 change: 0 additions & 1 deletion platforms/macos/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,3 @@ objc2-app-kit = { version = "0.2.0", features = [
"NSView",
"NSWindow",
] }

1 change: 1 addition & 0 deletions platforms/unix/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,4 @@ tokio-stream = { version = "0.1.14", optional = true }
version = "1.32.0"
optional = true
features = ["macros", "net", "rt", "sync", "time"]

1 change: 1 addition & 0 deletions platforms/windows/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,4 @@ features = [
once_cell = "1.13.0"
scopeguard = "1.1.0"
winit = "0.30"

1 change: 1 addition & 0 deletions platforms/winit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,4 @@ accesskit_unix = { version = "0.12.1", path = "../unix", optional = true, defaul
version = "0.30"
default-features = false
features = ["x11", "wayland", "wayland-dlopen", "wayland-csd-adwaita"]

0 comments on commit fc622fe

Please sign in to comment.