-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
54 lines (41 loc) · 1.04 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
[package]
name = "compositor"
description = "Wayland compositor made for AvdanOS"
documentation = "https://docs.avdanos.com/"
homepage = "https://avdanos.com/"
license = "GPL-3.0"
version = "0.0.1"
authors = [
"Akane <[email protected]>",
"Froxcey <[email protected]>",
"Sammy <[email protected]>",
]
edition = "2021"
[dependencies]
serde_json = "1.0.133"
lazy_static = "1.5.0"
json_comments = "0.2.2"
regex = "1.11.1"
slog-term = "2.9.1"
bitflags = "2.6.0"
colored = "2.1.0"
xcursor = "0.3.8"
thiserror = "2.0.3"
rand = "0.8.5"
xkbcommon = "0.8.0"
libc = "0.2.164"
[dependencies.compositor-macros]
path = "./src/macros"
[dependencies.json-tree]
git = "https://github.com/Sammy99jsp/json-tree.git"
features = ["jsonc"]
[dependencies.smithay]
git = "https://github.com/smithay/smithay.git"
rev = "6253576c"
features = ["desktop", "default", "backend_egl", "use_system_lib"]
[dependencies.serde]
version = "1.0.215"
features = ["derive"]
[dependencies.slog]
version = "2.7.0"
features = ["max_level_trace", "release_max_level_warn"]