-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
79 lines (69 loc) · 1.78 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
[workspace]
members = [
"mayctl",
"mayland-comm",
"mayland-config",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "GPL-3.0-or-later"
[workspace.dependencies]
dirs = "5.0.1"
mayland-config = { path = "mayland-config" }
mayland-comm = { path = "mayland-comm" }
serde = "1.0.217"
serde_json = "1.0.134"
[workspace.dependencies.smithay]
git = "/~https://github.com/Smithay/smithay"
default-features = false
[workspace.lints.clippy]
new_without_default = "allow"
undocumented_unsafe_blocks = "warn"
[package]
name = "mayland"
version = { workspace = true }
edition = { workspace = true }
[dependencies]
anstream = "0.6.18"
async-channel = "2.3.1"
calloop = { version = "0.14.2", features = ["executor", "futures-io"] }
chrono = { version = "0.4.39", features = ["clock", "std"] }
dirs = { workspace = true }
futures-util = { version = "0.3.31", default-features = false, features = ["std", "io"] }
indexmap = "2.7.0"
input = { version = "0.9.1", default-features = false, features = ["libinput_1_21"] }
libc = "0.2.169"
log-panics = { version = "2.1.0", features = ["with-backtrace"] }
mayland-config = { workspace = true }
mayland-comm = { workspace = true }
serde_json = { workspace = true }
tracing = "0.1.41"
tracing-journald = "0.3.1"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
xcursor = "0.3.8"
[dependencies.smithay]
workspace = true
features = [
"backend_drm",
"backend_egl",
"backend_gbm",
"backend_libinput",
"backend_udev",
"backend_session_libseat",
"backend_winit",
"desktop",
"renderer_glow",
"use_system_lib",
"wayland_frontend",
]
[dependencies.smithay-drm-extras]
git = "/~https://github.com/Smithay/smithay"
default-features = false
features = ["display-info"]
[lints]
workspace = true
[features]
default = []
debug = []
trace = ["debug"]