-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
59 lines (52 loc) · 1.36 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
[workspace]
members = ["gen", "macros"]
exclude = ["fuzz"]
[package]
name = "waynest"
version = "0.0.18"
edition = "2021"
license = "Apache-2.0"
authors = ["Federico Maria Morrone <[email protected]>"]
description = "Core wayland stuff"
readme = "README.md"
documentation = "https://docs.rs/waynest"
repository = "https://github.com/verdiwm/waynest"
include = ["src/**/*.rs", "README.md", "LICENSE"]
[features]
client = []
server = []
# Various protocols
stable = []
staging = []
unstable = []
wlr = []
plasma = []
weston = []
cosmic = ["wlr"]
frog = []
ivi = []
hyprland = []
# Internal features
fuzz = ["dep:arbitrary"]
[dependencies]
arbitrary = { version = "1.4.1", optional = true, features = ["derive"] }
async-trait = "0.1.83"
bitflags = "2.6.0"
bytes = "1.8.0"
downcast-rs = "1.2.1"
futures-util = { version = "0.3.31", default-features = false, features = [
"sink",
] }
pin-project-lite = "0.2.15"
rustix = { version = "0.38.41", features = ["fs", "net"] }
thiserror = "2.0.3"
tokio = { version = "1.41.1", features = ["net"] }
tracing = "0.1.40"
waynest-macros = { version = "0.0.2", path = "macros" }
[dev-dependencies]
anyhow = "1.0.93"
tokio = { version = "1.41.1", features = ["rt-multi-thread", "macros"] }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]