-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
63 lines (55 loc) · 1.42 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
[workspace]
members = ["gen", "macros"]
exclude = ["fuzz"]
[package]
name = "waynest"
version = "0.0.19"
edition = "2021"
license = "Apache-2.0"
authors = ["Federico Maria Morrone <contact@morrone.dev>"]
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.85"
bitflags = "2.8.0"
bytes = "1.9.0"
downcast-rs = "2.0.1"
futures-util = { version = "0.3.31", default-features = false, features = [
"sink",
] }
pin-project-lite = "0.2.16"
rustix = { version = "0.38.43", features = ["fs", "net"] }
thiserror = "2.0.11"
tokio = { version = "1.43.0", features = ["net"] }
tracing = "0.1.41"
waynest-macros = { version = "0.0.2", path = "macros" }
[dev-dependencies]
anyhow = "1.0.95"
tokio = { version = "1.43.0", features = ["rt-multi-thread", "macros"] }
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[[example]]
name = "client"
required-features = ["client"]