-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (38 loc) · 1 KB
/
Cargo.toml
File metadata and controls
45 lines (38 loc) · 1 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
[workspace]
members = [
"crates/woven-sys",
"crates/woven-render",
"crates/woven-common",
"crates/woven-ctrl",
]
resolver = "2"
[workspace.dependencies]
# async
tokio = { version = "1", features = ["full"] }
anyhow = "1"
thiserror = "2"
async-trait = "0.1"
crossbeam-channel = "0.5"
# lua vm
mlua = { version = "0.10", features = ["lua54", "send", "async", "vendored"] }
# wayland
smithay-client-toolkit = "0.19"
wayland-client = "0.31"
wayland-protocols = { version = "0.32", features = ["client"] }
wayland-protocols-wlr = { version = "0.3", features = ["client"] }
# serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# xcb for xwayland pid resolution
xcb = "1.3"
# rendering
tiny-skia = "0.11"
fontdue = "0.9"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true