-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (41 loc) · 1.05 KB
/
Copy pathCargo.toml
File metadata and controls
47 lines (41 loc) · 1.05 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
[package]
name = "wayapp"
description = "A Wayland application wrapper using smithay-client-toolkit, supports currently just egui using wgpu"
version = "0.3.1"
license-file = "LICENSE.txt"
repository = "https://github.com/Ciantic/wayapp"
homepage = "https://github.com/Ciantic/wayapp"
edition = "2024"
[dependencies]
log = "0.4.33"
smithay-client-toolkit = "0.20.0"
smithay-clipboard = "0.7"
wayland-backend = { version = "0.3.15", features = ["client_system"] }
wayland-client = "0.31.14"
wayland-protocols = "0.32.13"
wayland-protocols-wlr = "0.3.12"
# Used only by egui/wgpu backend
futures = "0.3.32"
egui = "0.35.0"
egui-wgpu = "0.35.0"
raw-window-handle = "0.6.2"
wgpu = "29.0.4"
[dev-dependencies]
env_logger = "0.11.11"
tokio = { version = "1.52.3", features = [
"rt",
"time",
"net",
"macros",
"rt-multi-thread",
"sync",
] }
hotpath = { version = "0.16", features = ["hotpath", "hotpath-alloc"] }
[lib]
name = "wayapp"
path = "src/lib.rs"
[features]
_example = []
[[example]]
name = "egui_tokio_async"
required-features = ["_example"]