-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
52 lines (46 loc) · 1.24 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
[workspace]
authors = [
"Cody Duong <[email protected]>"
]
resolver = "2"
members = [
"hitokage",
"hitokage-core",
"hitokage-lua",
"hitokage-macros",
"luahelper",
]
[workspace.dependencies]
anyhow = "1.0.86"
log = "0.4.21"
simple_logger = "5.0.0"
# gvsbuild is on GTK 4.14.4 -- https://github.com/wingtk/gvsbuild/releases
gdk4 = { version = "0.8.2", features = ["v4_14"] }
gdk4-win32 = { version = "0.8.2", features = ["v4_4", "win32"] }
glib = "0.19.7"
gtk4 = "0.8.2"
relm4 = "0.8.1"
relm4-macros = "0.8.1"
serde = { version = "1.0.117", features = ["derive"] }
serde_json = { version = "1.0.117" }
dirs = "5.0.1"
# there is some issues with patching win32-display-data, so use this rev
komorebi-client = { git = "https://github.com/LGUG2Z/komorebi", rev = "b612066367e05f1b29ca5ee42ab2449b76c6da0c"}
win32-display-data = { git = "https://github.com/LGUG2Z/win32-display-data", rev = "dd65e3f22d0521b78fcddde11abc2a3e9dcc32a8" }
tokio = { version = "1.42.0", features=["full"] }
[workspace.dependencies.windows]
version = "0.56.0"
[workspace.dependencies.mlua]
version = "0.10.2"
features = [
"lua54",
"serialize",
"vendored",
"async",
"send",
"macros"
]
[workspace.dependencies.lua-src]
version = "546.0.2"
[profile.release]
debug = true