forked from pop-os/cosmic-protocols
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (33 loc) · 1.32 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "cosmic-protocols"
version = "0.1.0"
edition = "2021"
documentation = "https://pop-os.github.io/cosmic-protocols/"
repository = "https://github.com/pop-os/cosmic-protocols"
authors = ["Victoria Brekenfeld <[email protected]>"]
license = "GPL-3.0-only"
keywords = ["wayland", "client", "server", "protocol", "extension"]
description = "Generated API for the COSMIC wayland protocol extensions"
categories = ["gui", "api-bindings"]
readme = "README.md"
[dependencies]
wayland-scanner = "0.31.0"
wayland-backend = "0.3.1"
wayland-protocols = { version = "0.32.1", features = ["staging"] }
wayland-protocols-wlr = "0.3.1"
wayland-client = { version = "0.31.1", optional = true }
wayland-server = { version = "0.31.0", optional = true }
bitflags = "2.4"
[dev-dependencies]
async-channel = "1.7.1"
cascade = "1"
env_logger = "0.10.0"
smithay = { git = "https://github.com/Smithay/smithay", rev = "298a3ec", default-features = false, features = ["backend_egl", "renderer_gl", "renderer_multi"]}
wayland-backend = { version = "0.3.1", features = ["client_system"] }
memfd = "0.6.1"
[features]
default = ["client", "server"]
client = ["wayland-client", "wayland-protocols/client", "wayland-protocols-wlr/client"]
server = ["wayland-server", "wayland-protocols/server", "wayland-protocols-wlr/server"]
[workspace]
members = ["client-toolkit"]