-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
88 lines (78 loc) · 2.06 KB
/
Cargo.toml
File metadata and controls
88 lines (78 loc) · 2.06 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
86
87
88
[workspace]
members = [
"mayctl",
"mayland-comm",
"mayland-config",
]
[workspace.package]
version = "0.1.0"
edition = "2024"
license = "GPL-3.0-only"
[workspace.dependencies]
dirs = "6.0.0"
mayland-config = { path = "mayland-config" }
mayland-comm = { path = "mayland-comm" }
serde = "1.0.228"
serde_json = "1.0.149"
[workspace.dependencies.smithay]
git = "https://github.com/Smithay/smithay"
default-features = false
[workspace.lints.rust]
elided_lifetimes_in_paths = "warn"
[workspace.lints.clippy]
equatable_if_let = "warn"
inconsistent_struct_constructor = "warn"
new_without_default = "allow"
redundant_clone = "warn"
type_repetition_in_bounds = "warn"
semicolon_if_nothing_returned = "warn"
undocumented_unsafe_blocks = "warn"
unnecessary_semicolon = "warn"
[package]
name = "mayland"
version = { workspace = true }
edition = { workspace = true }
readme = "readme.md"
[dependencies]
anstream = "0.6.21"
anstyle = "1.0.13"
async-channel = "2.5.0"
calloop = { version = "0.14.3", features = ["executor", "futures-io"] }
clap = { version = "4.5.57", features = ["derive"] }
clap_complete = { version = "4.5.65", features = ["unstable-dynamic"] }
dirs = { workspace = true }
env_filter = "0.1.4"
futures-util = { version = "0.3.31", default-features = false, features = ["std", "io"] }
indexmap = "2.13.0"
input = { version = "0.9.1", default-features = false, features = ["libinput_1_21"] }
jiff = "0.2.18"
libc = "0.2.180"
log = "0.4.29"
log-panics = { version = "2.1.0", features = ["with-backtrace"] }
mayland-config = { workspace = true }
mayland-comm = { workspace = true }
serde_json = { workspace = true }
systemd-journal-logger = "2.2.2"
tracing = "0.1.44"
xcursor = "0.3.10"
[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