From bb044a88c60c483ed45d08a3b56e7a428612a4dc Mon Sep 17 00:00:00 2001 From: En-En <39373446+En-En-Code@users.noreply.github.com> Date: Wed, 27 Aug 2025 12:42:12 +0000 Subject: [PATCH] fix: properly specify subprojects' required features --- macros/Cargo.toml | 2 +- testwl/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 799c657..0e5a43c 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -12,4 +12,4 @@ proc-macro = true [dependencies] proc-macro2 = "1.0.95" quote = "1.0.37" -syn = "2.0.79" +syn = { version = "2.0.79", features = ["full"] } diff --git a/testwl/Cargo.toml b/testwl/Cargo.toml index 243f734..20a5489 100644 --- a/testwl/Cargo.toml +++ b/testwl/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" workspace = true [dependencies] -wayland-protocols = { workspace = true, features = ["server", "unstable"] } +wayland-protocols = { workspace = true, features = ["server", "staging", "unstable"] } wayland-server.workspace = true wl_drm = { path = "../wl_drm" } rustix = { workspace = true, features = ["pipe"] }