fix: properly specify subprojects' required features
This commit is contained in:
parent
8b74001a13
commit
bb044a88c6
2 changed files with 2 additions and 2 deletions
|
|
@ -12,4 +12,4 @@ proc-macro = true
|
||||||
[dependencies]
|
[dependencies]
|
||||||
proc-macro2 = "1.0.95"
|
proc-macro2 = "1.0.95"
|
||||||
quote = "1.0.37"
|
quote = "1.0.37"
|
||||||
syn = "2.0.79"
|
syn = { version = "2.0.79", features = ["full"] }
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ edition = "2021"
|
||||||
workspace = true
|
workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
wayland-protocols = { workspace = true, features = ["server", "unstable"] }
|
wayland-protocols = { workspace = true, features = ["server", "staging", "unstable"] }
|
||||||
wayland-server.workspace = true
|
wayland-server.workspace = true
|
||||||
wl_drm = { path = "../wl_drm" }
|
wl_drm = { path = "../wl_drm" }
|
||||||
rustix = { workspace = true, features = ["pipe"] }
|
rustix = { workspace = true, features = ["pipe"] }
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue