Skip to content

Commit

Permalink
Update rust-version and CHANGELOG for use of BorrowedFd
Browse files Browse the repository at this point in the history
  • Loading branch information
ids1024 committed Jul 26, 2023
1 parent ce21e9b commit f9f55d5
Show file tree
Hide file tree
Showing 15 changed files with 16 additions and 13 deletions.
4 changes: 2 additions & 2 deletions wayland-backend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "wayland-backend"
version = "0.2.0"
authors = ["Elinor Berger <elinor@safaradeg.net>"]
edition = "2018"
rust-version = "1.59"
rust-version = "1.65"
repository = "https://github.com/smithay/wayland-rs"
documentation = "https://docs.rs/wayland-backend/"
license = "MIT"
Expand All @@ -23,7 +23,7 @@ raw-window-handle = { version = "0.5.0", optional = true }

[dependencies.smallvec]
version = "1.9"
# Some additional features can be enabled since wayland-rs requires at least Rust 1.59
# Some additional features can be enabled since wayland-rs requires at least Rust 1.65
features = [
"union", # 1.49
"const_generics", # 1.51
Expand Down
1 change: 1 addition & 0 deletions wayland-client/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
- Bump bitflags to 2.0
- Updated wayland-backend to 0.2
- Calloop integration is now removed, to avoid tying wayland-client to it
- Use `BorrowedFd<'_>` arguments instead of `RawFd`

## 0.30.2 -- 30/05/2023

Expand Down
2 changes: 1 addition & 1 deletion wayland-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ repository = "https://github.com/smithay/wayland-rs"
authors = ["Elinor Berger <elinor@safaradeg.net>"]
license = "MIT"
edition = "2018"
rust-version = "1.59"
rust-version = "1.65"
categories = ["gui", "api-bindings"]
keywords = ["wayland", "client"]
description = "Bindings to the standard C implementation of the wayland protocol, client side."
Expand Down
2 changes: 1 addition & 1 deletion wayland-cursor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ repository = "https://github.com/smithay/wayland-rs"
authors = ["Elinor Berger <elinor@safaradeg.net>"]
license = "MIT"
edition = "2018"
rust-version = "1.59"
rust-version = "1.65"
categories = ["gui", "api-bindings"]
keywords = ["wayland", "client"]
description = "Bindings to libwayland-cursor."
Expand Down
2 changes: 1 addition & 1 deletion wayland-egl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ repository = "https://github.com/smithay/wayland-rs"
authors = ["Elinor Berger <elinor@safaradeg.net>"]
license = "MIT"
edition = "2018"
rust-version = "1.59"
rust-version = "1.65"
categories = ["gui", "api-bindings"]
keywords = ["wayland", "client"]
description = "Bindings to libwayland-egl."
Expand Down
2 changes: 1 addition & 1 deletion wayland-protocols-misc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ keywords = ["wayland", "client", "server", "protocol", "extension"]
description = "Generated API for misc and deprecated wayland protocol extensions"
categories = ["gui", "api-bindings"]
edition = "2018"
rust-version = "1.59"
rust-version = "1.65"
readme = "README.md"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion wayland-protocols-plasma/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ keywords = ["wayland", "client", "server", "protocol", "extension"]
description = "Generated API for the Plasma wayland protocol extensions"
categories = ["gui", "api-bindings"]
edition = "2018"
rust-version = "1.59"
rust-version = "1.65"
readme = "README.md"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion wayland-protocols-wlr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ keywords = ["wayland", "client", "server", "protocol", "extension"]
description = "Generated API for the WLR wayland protocol extensions"
categories = ["gui", "api-bindings"]
edition = "2018"
rust-version = "1.59"
rust-version = "1.65"
readme = "README.md"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion wayland-protocols/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ keywords = ["wayland", "client", "server", "protocol", "extension"]
description = "Generated API for the officials wayland protocol extensions"
categories = ["gui", "api-bindings"]
edition = "2018"
rust-version = "1.59"
rust-version = "1.65"
readme = "README.md"

[dependencies]
Expand Down
1 change: 1 addition & 0 deletions wayland-scanner/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
#### Breaking changes

- Bump bitflags to 2.0
- Generate `BorrowedFd<'_>` arguments instead of `RawFd`

# 0.30.1 -- 2023-06-17

Expand Down
2 changes: 1 addition & 1 deletion wayland-scanner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license = "MIT"
categories = ["gui", "api-bindings"]
keywords = ["wayland", "codegen"]
edition = "2018"
rust-version = "1.59"
rust-version = "1.65"
readme = "README.md"

[lib]
Expand Down
1 change: 1 addition & 0 deletions wayland-server/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

- Bump bitflags to 2.0
- Updated wayland-backend to 0.2
- Use `BorrowedFd<'_>` arguments instead of `RawFd`

#### Bugfixes

Expand Down
2 changes: 1 addition & 1 deletion wayland-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ categories = ["gui", "api-bindings"]
keywords = ["wayland", "server", "compositor"]
description = "Bindings to the standard C implementation of the wayland protocol, server side."
edition = "2018"
rust-version = "1.59"
rust-version = "1.65"
readme = "README.md"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion wayland-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ description = "FFI bindings to the various libwayland-*.so libraries. You should
license = "MIT"
categories = ["external-ffi-bindings"]
edition = "2018"
rust-version = "1.59"
rust-version = "1.65"
readme = "README.md"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion wayland-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "wayland-tests"
version = "0.1.0"
edition = "2018"
rust-version = "1.59"
rust-version = "1.65"
publish = false
autotests = false

Expand Down

0 comments on commit f9f55d5

Please sign in to comment.