forked from Smithay/client-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
57 lines (50 loc) · 1.59 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[package]
name = "smithay-client-toolkit"
version = "0.17.0"
authors = ["Elinor Berger <elinor@safaradeg.net>", "i509VCB <mail@i509.me>", "Ashley Wulber <ashley@system76.com>"]
documentation = "https://smithay.github.io/client-toolkit"
repository = "https://github.com/smithay/client-toolkit"
license = "MIT"
edition = "2021"
categories = ["gui"]
keywords = ["wayland", "client"]
description = "Toolkit for making client wayland applications."
readme = "README.md"
[package.metadata.docs.rs]
features = ["calloop", "xkbcommon"]
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
bitflags = "1.0"
cursor-icon = "1.0.0"
dlib = "0.5"
lazy_static = "1.0"
log = "0.4"
memmap2 = "0.5.0"
nix = { version = "0.26.1", default-features = false, features = ["fs", "mman"] }
thiserror = "1.0.30"
wayland-backend = "0.1.0"
wayland-client = "0.30.1"
wayland-cursor = "0.30.0"
wayland-protocols = { version = "0.30.0", features = ["client", "unstable"] }
wayland-protocols-wlr = { version = "0.1.0", features = ["client"] }
wayland-scanner = "0.30.0"
xkbcommon = { version = "0.5", optional = true, features = ["wayland"] }
calloop = { version = "0.10.5", optional = true }
[features]
default = ["calloop", "xkbcommon"]
calloop = ["dep:calloop", "wayland-client/calloop"]
xkbcommon = ["dep:xkbcommon", "pkg-config"]
[build-dependencies]
pkg-config = { version = "0.3", optional = true }
[dev-dependencies]
bytemuck = "1.13.0"
font-kit = "0.11.0"
image = "0.23"
env_logger = "0.9"
wgpu = "0.15.0"
raqote = "0.8.2"
raw-window-handle = "0.4.3"
pollster = "0.2.5"
[[example]]
name = "wgpu"
required-features = ["wayland-backend/client_system"]