From b393a322d1218cc7e0139c27e414129e67085944 Mon Sep 17 00:00:00 2001 From: Ian Douglas Scott Date: Thu, 18 Apr 2024 10:20:14 -0700 Subject: [PATCH] Depend on latest version of all subcrates The `katyo/publish-crates` action requires that all crates in a repository depend on the latest version of any other crate in the repo. This seems reasonable, and is probably a best practice. --- wayland-backend/Cargo.toml | 2 +- wayland-client/Cargo.toml | 4 ++-- wayland-cursor/Cargo.toml | 2 +- wayland-egl/Cargo.toml | 4 ++-- wayland-protocols-misc/Cargo.toml | 10 +++++----- wayland-protocols-plasma/Cargo.toml | 10 +++++----- wayland-protocols-wlr/Cargo.toml | 10 +++++----- wayland-protocols/Cargo.toml | 8 ++++---- wayland-server/Cargo.toml | 4 ++-- 9 files changed, 27 insertions(+), 27 deletions(-) diff --git a/wayland-backend/Cargo.toml b/wayland-backend/Cargo.toml index b42c27f588d..a08ea9848c0 100644 --- a/wayland-backend/Cargo.toml +++ b/wayland-backend/Cargo.toml @@ -14,7 +14,7 @@ readme = "README.md" build = "build.rs" [dependencies] -wayland-sys = { version = "0.31.0", path = "../wayland-sys", features = [] } +wayland-sys = { version = "0.31.1", path = "../wayland-sys", features = [] } log = { version = "0.4", optional = true } scoped-tls = "1.0" downcast-rs = "1.2" diff --git a/wayland-client/Cargo.toml b/wayland-client/Cargo.toml index 4ea5ea44a17..022c2e816a4 100644 --- a/wayland-client/Cargo.toml +++ b/wayland-client/Cargo.toml @@ -13,8 +13,8 @@ description = "Bindings to the standard C implementation of the wayland protocol readme = "README.md" [dependencies] -wayland-backend = { version = "0.3.1", path = "../wayland-backend" } -wayland-scanner = { version = "0.31.0", path = "../wayland-scanner" } +wayland-backend = { version = "0.3.3", path = "../wayland-backend" } +wayland-scanner = { version = "0.31.1", path = "../wayland-scanner" } bitflags = "2" rustix = { version = "0.38.0", features = ["event"] } log = { version = "0.4", optional = true } diff --git a/wayland-cursor/Cargo.toml b/wayland-cursor/Cargo.toml index de1b33b2a81..eeb5b4d2dec 100644 --- a/wayland-cursor/Cargo.toml +++ b/wayland-cursor/Cargo.toml @@ -13,7 +13,7 @@ description = "Bindings to libwayland-cursor." readme = "README.md" [dependencies] -wayland-client = { version = "0.31.0", path = "../wayland-client" } +wayland-client = { version = "0.31.2", path = "../wayland-client" } xcursor = "0.3.1" rustix = { version = "0.38.15", features = ["shm"] } diff --git a/wayland-egl/Cargo.toml b/wayland-egl/Cargo.toml index 51213aa9292..694e5ffec1e 100644 --- a/wayland-egl/Cargo.toml +++ b/wayland-egl/Cargo.toml @@ -13,8 +13,8 @@ description = "Bindings to libwayland-egl." readme = "README.md" [dependencies] -wayland-backend = { version = "0.3.0", path = "../wayland-backend", features = ["client_system"] } -wayland-sys = { version = "0.31.0", path="../wayland-sys", features = ["egl"] } +wayland-backend = { version = "0.3.3", path = "../wayland-backend", features = ["client_system"] } +wayland-sys = { version = "0.31.1", path="../wayland-sys", features = ["egl"] } [package.metadata.docs.rs] all-features = true diff --git a/wayland-protocols-misc/Cargo.toml b/wayland-protocols-misc/Cargo.toml index a2d674d7ae5..c3e79c773a1 100644 --- a/wayland-protocols-misc/Cargo.toml +++ b/wayland-protocols-misc/Cargo.toml @@ -15,11 +15,11 @@ readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -wayland-scanner = { version = "0.31.0", path = "../wayland-scanner" } -wayland-backend = { version = "0.3.0", path = "../wayland-backend" } -wayland-client = { version = "0.31.0", path = "../wayland-client", optional = true } -wayland-server = { version = "0.31.0", path = "../wayland-server", optional = true } -wayland-protocols = { version = "0.31.0", path = "../wayland-protocols", features=["unstable"] } +wayland-scanner = { version = "0.31.1", path = "../wayland-scanner" } +wayland-backend = { version = "0.3.3", path = "../wayland-backend" } +wayland-client = { version = "0.31.2", path = "../wayland-client", optional = true } +wayland-server = { version = "0.31.1", path = "../wayland-server", optional = true } +wayland-protocols = { version = "0.31.2", path = "../wayland-protocols", features=["unstable"] } bitflags = "2" [features] diff --git a/wayland-protocols-plasma/Cargo.toml b/wayland-protocols-plasma/Cargo.toml index 5b1d31f8c77..8e134e3f6f4 100644 --- a/wayland-protocols-plasma/Cargo.toml +++ b/wayland-protocols-plasma/Cargo.toml @@ -15,11 +15,11 @@ readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -wayland-scanner = { version = "0.31.0", path = "../wayland-scanner" } -wayland-backend = { version = "0.3.0", path = "../wayland-backend" } -wayland-client = { version = "0.31.0", path = "../wayland-client", optional = true } -wayland-server = { version = "0.31.0", path = "../wayland-server", optional = true } -wayland-protocols = { version = "0.31.0", path = "../wayland-protocols"} +wayland-scanner = { version = "0.31.1", path = "../wayland-scanner" } +wayland-backend = { version = "0.3.3", path = "../wayland-backend" } +wayland-client = { version = "0.31.2", path = "../wayland-client", optional = true } +wayland-server = { version = "0.31.1", path = "../wayland-server", optional = true } +wayland-protocols = { version = "0.31.2", path = "../wayland-protocols"} bitflags = "2" [features] diff --git a/wayland-protocols-wlr/Cargo.toml b/wayland-protocols-wlr/Cargo.toml index 6b20b5b93cf..482ba3a4e86 100644 --- a/wayland-protocols-wlr/Cargo.toml +++ b/wayland-protocols-wlr/Cargo.toml @@ -15,11 +15,11 @@ readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -wayland-scanner = { version = "0.31.0", path = "../wayland-scanner" } -wayland-backend = { version = "0.3.0", path = "../wayland-backend" } -wayland-client = { version = "0.31.0", path = "../wayland-client", optional = true } -wayland-server = { version = "0.31.0", path = "../wayland-server", optional = true } -wayland-protocols = { version = "0.31.0", path = "../wayland-protocols"} +wayland-scanner = { version = "0.31.1", path = "../wayland-scanner" } +wayland-backend = { version = "0.3.3", path = "../wayland-backend" } +wayland-client = { version = "0.31.2", path = "../wayland-client", optional = true } +wayland-server = { version = "0.31.1", path = "../wayland-server", optional = true } +wayland-protocols = { version = "0.31.2", path = "../wayland-protocols"} bitflags = "2" [features] diff --git a/wayland-protocols/Cargo.toml b/wayland-protocols/Cargo.toml index c6b0692a608..61ae21735b5 100644 --- a/wayland-protocols/Cargo.toml +++ b/wayland-protocols/Cargo.toml @@ -13,10 +13,10 @@ rust-version = "1.65" readme = "README.md" [dependencies] -wayland-scanner = { version = "0.31.0", path = "../wayland-scanner" } -wayland-backend = { version = "0.3.0", path = "../wayland-backend" } -wayland-client = { version = "0.31.0", path = "../wayland-client", optional = true } -wayland-server = { version = "0.31.0", path = "../wayland-server", optional = true } +wayland-scanner = { version = "0.31.1", path = "../wayland-scanner" } +wayland-backend = { version = "0.3.3", path = "../wayland-backend" } +wayland-client = { version = "0.31.2", path = "../wayland-client", optional = true } +wayland-server = { version = "0.31.1", path = "../wayland-server", optional = true } bitflags = "2" [features] diff --git a/wayland-server/Cargo.toml b/wayland-server/Cargo.toml index 3dfac588207..6a26de686c2 100644 --- a/wayland-server/Cargo.toml +++ b/wayland-server/Cargo.toml @@ -13,8 +13,8 @@ rust-version = "1.65" readme = "README.md" [dependencies] -wayland-backend = { version = "0.3.0", path = "../wayland-backend" } -wayland-scanner = { version = "0.31.0", path = "../wayland-scanner" } +wayland-backend = { version = "0.3.3", path = "../wayland-backend" } +wayland-scanner = { version = "0.31.1", path = "../wayland-scanner" } bitflags = "2" log = { version = "0.4", optional = true } downcast-rs = "1.2"