-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
85 lines (70 loc) · 1.92 KB
/
Cargo.toml
File metadata and controls
85 lines (70 loc) · 1.92 KB
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
81
82
83
84
85
[workspace]
resolver = "2"
members = [
"crates/codeverse-compositor",
"crates/codeverse-window",
"crates/codeverse-launcher",
"crates/codeverse-config",
"crates/codeverse-ipc",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
authors = ["CodeVerse Team"]
license = "MIT"
repository = "https://github.com/codeverse/compositor"
[workspace.dependencies]
# Smithay core - using specific commit (9ccbd35f) that added libdisplay-info 0.3.0 support
# This commit is after v0.7.0 but before the major API changes, providing stable compatibility
# Features enabled for both winit (development) and DRM (production) backends
smithay = { git = "https://github.com/Smithay/smithay", rev = "9ccbd35f51842934f22b5a85ca0e3be1b99b27f", default-features = false, features = [
"desktop",
"wayland_frontend",
"renderer_gl",
"renderer_multi",
"backend_winit",
"backend_drm",
"backend_gbm",
"backend_egl",
"backend_libinput",
"backend_session_libseat",
"backend_udev",
] }
smithay-drm-extras = { git = "https://github.com/Smithay/smithay", rev = "9ccbd35f51842934f22b5a85ca0e3be1b99b27f" }
# Event loop
calloop = { version = "0.13", features = ["signals"] }
# Wayland
wayland-server = "0.31"
wayland-protocols = { version = "0.32", features = ["server", "unstable"] }
# Graphics
glow = "0.13"
# Input
xkbcommon = "0.7"
# Configuration
serde = { version = "1", features = ["derive"] }
toml = "0.8"
dirs = "5"
# Fuzzy finder
nucleo = "0.5"
nucleo-matcher = "0.3"
# Desktop file parsing
freedesktop-desktop-entry = "0.7"
# Error handling
anyhow = "1"
thiserror = "2"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Data structures
slotmap = "1.0"
indexmap = "2.0"
# Geometry
euclid = "0.22"
# DRM/KMS (for production TTY backend)
gbm = "0.15"
drm = "0.12"
libseat = "0.2"
input = "0.9"
# IPC
serde_json = "1"
nix = { version = "0.29", features = ["socket"] }