This repository has been archived by the owner on Oct 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
96 lines (82 loc) · 1.91 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[workspace]
resolver = "2"
members = [
"compositor",
"crates/wm-runtime",
"examples/*",
]
[workspace.package]
edition = "2021"
rust-version = "1.72.1"
# license =
version = "0.0.1"
authors = ["i509VCB <[email protected]>"]
repository = "https://github.com/i509VCB/aerugo"
[workspace.dependencies.clap]
version = "4.0.32"
features = [
"derive",
"wrap_help"
]
[workspace.dependencies.smithay]
git = "https://github.com/Smithay/smithay"
rev = "509030a151ad440f8406229f32d674811efd9007"
default-features = false
features = [
"backend_egl",
"backend_gbm",
"backend_vulkan",
"backend_x11",
"renderer_gl",
"renderer_glow",
"wayland_frontend",
"xwayland",
]
[workspace.dependencies.wayland-backend]
version = "0.3.2"
[workspace.dependencies.wayland-scanner]
version = "0.31.0"
[workspace.dependencies.wayland-server]
version = "0.31.0"
[workspace.dependencies.calloop]
version = "0.12.2"
features = ["executor"]
[workspace.dependencies.nix]
version = "0.27.1"
[workspace.dependencies.rustix]
version = "0.38.11"
[workspace.dependencies.wit-bindgen]
git = "https://github.com/bytecodealliance/wit-bindgen"
rev = "9c834db09a7f0c78ffacceb94c8186e9cec60dda"
[workspace.dependencies.wasmtime]
# version = "13.0.0"
git = "https://github.com/bytecodealliance/wasmtime"
rev = "c642a56cee51d284480099dd57370ee94a2e3f75"
default-features = false
features = [
"cranelift",
"cache",
"component-model",
]
# Workspace crates
[workspace.dependencies.wm-runtime]
package = "aerugo-wm-runtime"
path = "crates/wm-runtime"
[workspace.dependencies]
ashpd = "0.6.2"
bitflags = "2.4.0"
downcast-rs = "1.2.0"
euclid = "0.22.9"
once_cell = "1.18.0"
slotmap = "1.0.6"
rustc-hash = "1.1.0"
static_assertions = "1.1.0"
thiserror = "1.0.48"
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
zbus = "3.14.1"
# Enable LTO during release to make the binaries a bit smaller
[profile.release]
lto = true
opt-level = 3
strip = true