-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
80 lines (77 loc) · 1.98 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[package]
name = "strata"
version = "0.0.1"
edition = "2021"
authors = ["Anant Narayan <[email protected]>"]
license = "GNU GPL v3"
description = "A cutting-edge, robust and sleek Wayland compositor with batteries included."
readme = "README.md"
homepage = "https://github.com/stratawm/strata"
repository = "https://github.com/stratawm/strata"
keywords = [
"smithay",
"compositor",
"wayland",
"linux",
"linux-utilities",
"wm",
"windows",
"manager",
]
categories = ["linux-utilities"]
[profile.release]
strip = true
opt-level = 3
lto = true
codegen-units = 1
[dependencies]
tracing-subscriber = { features = ["env-filter"], version = "0.3.17" }
bitflags = "2.4.1"
colored = "2.0.0"
clap = { version = "4.3.11", features = ["derive"] }
anyhow = "1.0.71"
log = "0.4.19"
tokio = { version = "1.29.1", features = ["full"] }
chrono = "0.4.26"
tracing-appender = "0.2.2"
smithay-drm-extras = { git = "https://github.com/Smithay/smithay.git" }
once_cell = "1.19.0"
gc-arena = { version = "0.5.0", features = ["allocator-api2", "hashbrown"] }
piccolo = { git = "https://github.com/kyren/piccolo.git" }
piccolo-util = { git = "https://github.com/kyren/piccolo.git" }
crossbeam-channel = "0.5.8"
parking_lot = "0.12.1"
xdg = "2.5.2"
strata-derive = { path = "strata-derive" }
strata-core = { path = "strata-core" }
smart-default = "0.7.1"
strum = { version = "0.25.0", features = ["derive"] }
[dependencies.smithay]
default-features = false
git = "https://github.com/stratawm/smithay"
version = "0.3.0"
rev = "f1e7fc1"
features = [
"backend_winit",
"wayland_frontend",
"desktop",
"backend_session_libseat",
"backend_drm",
"renderer_multi",
"renderer_glow",
"backend_drm",
"backend_gbm",
"backend_egl",
"backend_libinput",
"backend_session_libseat",
"backend_udev",
"backend_winit",
"backend_vulkan",
"backend_x11",
"desktop",
"use_system_lib",
"renderer_glow",
"renderer_multi",
"wayland_frontend",
"xwayland",
]