forked from malbiruk/driftwm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (29 loc) · 844 Bytes
/
Cargo.toml
File metadata and controls
30 lines (29 loc) · 844 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
[package]
name = "driftwm"
version = "0.1.6"
edition = "2024"
license = "GPL-3.0-or-later"
authors = ["Klim Kostiuk <[email protected]>"]
[dependencies]
smithay = { git = "https://github.com/Smithay/smithay.git", default-features = false, features = [
"backend_winit",
"backend_udev",
"backend_drm",
"backend_gbm",
"backend_libinput",
"backend_session_libseat",
"backend_egl",
"renderer_gl",
"wayland_frontend",
"desktop",
"xwayland",
] }
smithay-drm-extras = { git = "https://github.com/Smithay/smithay.git" }
libdisplay-info = "0.3.0"
image = { version = "0.25", default-features = false, features = ["png", "jpeg"] }
xcursor = "0.3"
serde = { version = "1", features = ["derive"] }
toml = "0.8"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
libc = "0.2.182"