forked from Smithay/client-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (30 loc) · 915 Bytes
/
Cargo.toml
File metadata and controls
34 lines (30 loc) · 915 Bytes
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
[package]
name = "smithay-client-toolkit"
version = "0.16.0"
authors = ["Victor Berger <victor.berger@m4x.org>"]
documentation = "https://smithay.github.io/client-toolkit"
repository = "https://github.com/smithay/client-toolkit"
license = "MIT"
edition = "2018"
categories = ["gui"]
keywords = ["wayland", "client"]
description = "Toolkit for making client wayland applications."
readme = "README.md"
[dependencies]
bitflags = "1.0"
nix = { version = "0.24", default-features = false, features = ["mman", "fs"] }
dlib = "0.5"
lazy_static = "1.0"
memmap2 = "0.5.0"
log = "0.4"
wayland-client = "0.29"
wayland-protocols = { version = "0.29" , features = ["client", "unstable_protocols"] }
wayland-cursor = "0.29"
calloop = { version = "0.10", optional = true }
[features]
default = ["calloop", "dlopen"]
dlopen = ["wayland-client/dlopen"]
[build-dependencies]
pkg-config = "0.3"
[dev-dependencies]
image = "0.24"