forked from waycrate/exwlshelleventloop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
103 lines (88 loc) · 3.17 KB
/
Cargo.toml
File metadata and controls
103 lines (88 loc) · 3.17 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
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
97
98
99
100
101
102
103
[workspace]
resolver = "3"
members = [
"layershellev",
"exwlshellev",
"sessionlockev",
"iced_layershell",
"iced_layershell_macros",
"iced_sessionlock",
"iced_sessionlock_macros",
"iced_exwlshell",
"iced_exwlshell_macros",
"iced_wayland_subscriber",
"waycrate_xkbkeycode",
"iced_exdevtools",
"iced_examples/*",
]
[workspace.package]
authors = [
"Decodertalkers <aakari@tutanota.com>",
"Aakash Sen Sharma <aakashsensharma@gmail.com>",
]
edition = "2024"
version = "0.18.0-dev"
license = "MIT"
repository = "https://github.com/waycrate/exwlshelleventloop"
description = "Wayland extra shell lib"
keywords = ["wayland", "wlroots"]
readme = "README.md"
[workspace.dependencies]
layershellev = { version = "0.18.0-dev", path = "./layershellev" }
sessionlockev = { version = "0.18.0-dev", path = "./sessionlockev" }
exwlshellev = { version = "0.18.0-dev", path = "./exwlshellev" }
iced_wayland_subscriber = { version = "0.18.0-dev", path = "./iced_wayland_subscriber" }
iced_layershell = { version = "0.18.0-dev", path = "./iced_layershell" }
iced_exdevtools = { version = "0.18.0-dev", path = "./iced_exdevtools" }
iced_layershell_macros = { version = "0.18.0-dev", path = "./iced_layershell_macros" }
iced_sessionlock = { version = "0.18.0-dev", path = "./iced_sessionlock" }
iced_sessionlock_macros = { version = "0.18.0-dev", path = "./iced_sessionlock_macros" }
iced_exwlshell = { version = "0.18.0-dev", path = "./iced_exwlshell" }
iced_exwlshell_macros = { version = "0.18.0-dev", path = "./iced_exwlshell_macros" }
waycrate_xkbkeycode = { version = "0.18.0-dev", path = "./waycrate_xkbkeycode" }
tempfile = "3.27.0"
thiserror = "2.0.12"
wayland-client = { version = "0.31.7" }
wayland-protocols = { version = "0.32.5", default-features = false, features = [
"unstable",
"staging",
"client",
] }
tracing-subscriber = { version = "0.3.18", features = ["std", "env-filter"] }
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"] }
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.14"
iced_runtime = "0.14"
iced_core = "0.14"
iced_program = "0.14"
iced_renderer = "0.14"
iced_futures = "0.14"
iced_graphics = "0.14"
iced_debug = "0.14"
iced_devtools = "0.14"
iced_widget = "0.14"
window_clipboard = "0.5.0"
log = "0.4.22"
enumflags2 = "0.7.11"
xkbcommon-dl = "0.4.2"
smol_str = "0.2.2" #NOTE: follow iced
memmap2 = "0.9.5"
winit-common = { version = "0.31.0-beta.2", features = ["xkb", "wayland"] }
winit-core = "0.31.0-beta.2" # Has some important types
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"] }