-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
92 lines (76 loc) · 2.43 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
[workspace]
resolver = "2"
members = [
"layershellev",
"iced_layershell",
"iced_layershell_macros",
"iced_sessionlock",
"iced_sessionlock_macros",
"starcolorkeyboard",
"sessionlockev",
"waycrate_xkbkeycode",
"iced_examples/*",
]
[workspace.package]
authors = [
"Decodertalkers <aakari@tutanota.com>",
"Aakash Sen Sharma <aakashsensharma@gmail.com>",
]
edition = "2021"
version = "0.9.6"
license = "MIT"
repository = "https://github.com/waycrate/exwlshelleventloop"
description = "Wayland extra shell lib"
keywords = ["wayland", "wlroots"]
readme = "README.md"
[workspace.dependencies]
layershellev = { version = "0.9.6", path = "./layershellev" }
sessionlockev = { version = "0.9.6", path = "./sessionlockev" }
iced_layershell = { version = "0.9.6", path = "./iced_layershell" }
iced_layershell_macros = { version = "0.9.6", path = "./iced_layershell_macros" }
iced_sessionlock = { version = "0.9.6", path = "./iced_sessionlock" }
iced_sessionlock_macros = { version = "0.9.6", path = "./iced_sessionlock_macros" }
waycrate_xkbkeycode = { version = "0.9.6", path = "./waycrate_xkbkeycode" }
tempfile = "3.13.0"
thiserror = "1.0.68"
wayland-client = { version = "0.31.7" }
wayland-protocols = { version = "0.32.5", default-features = false, features = [
"unstable",
"staging",
"client",
] }
wayland-cursor = "0.31.7"
wayland-protocols-wlr = { version = "0.3.5", default-features = false, features = [
"client",
] }
wayland-protocols-misc = { version = "0.3.5", features = ["client"] }
wayland-backend = { version = "0.3.7", features = ["client_system"] }
#sctk = { package = "smithay-client-toolkit", version = "0.19.2", features = [
# "calloop",
#] }
calloop = "0.14.1"
calloop-wayland-source = "0.4.0"
rwh_05 = { package = "raw-window-handle", version = "0.5.2", features = [
"std",
] }
rwh_06 = { package = "raw-window-handle", version = "0.6", features = ["std"] }
iced = "0.13"
iced_runtime = { version = "0.13", features = ["multi-window"] }
#iced_style = "0.13"
iced_core = "0.13"
iced_renderer = "0.13"
iced_futures = "0.13"
iced_graphics = "0.13"
window_clipboard = "0.4.1"
bitflags = "2.6.0"
log = "0.4.22"
xkbcommon-dl = "0.4.2"
smol_str = "0.2.2" #NOTE: follow iced
memmap2 = "0.9.5"
tracing = "0.1.40"
futures = "0.3.31"
darling = { version = "0.20.10", features = ["suggestions"] }
manyhow = { version = "0.11.4", features = ["darling"] }
proc-macro2 = "1.0.89"
quote = "1.0.37"
syn = { version = "2.0.87", features = ["full"] }