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"] }