-
-
Notifications
You must be signed in to change notification settings - Fork 70
/
Cargo.toml
40 lines (37 loc) · 1.15 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
[package]
name = "kooha"
version = "2.3.0"
authors = ["Dave Patrick Caberto <[email protected]>"]
license = "GPL-3.0-or-later"
edition = "2021"
[profile.release]
lto = true
# Don't compile and link debug info; these reduce build times at the
# cost of not having line numbers in backtraces.
[profile.dev]
debug = 0
strip = "debuginfo"
[dependencies]
adw = { package = "libadwaita", version = "0.7", features = ["v1_6"] }
anyhow = "1.0.59"
futures-channel = "0.3.19"
futures-util = { version = "0.3", default-features = false }
gdk-wayland = { package = "gdk4-wayland", version = "0.9" }
gdk-x11 = { package = "gdk4-x11", version = "0.9" }
gettext-rs = { version = "0.7.0", features = ["gettext-system"] }
gsettings-macro = "0.2"
gst = { package = "gstreamer", version = "0.23", features = ["v1_20"] }
gst-plugin-gif = "0.13"
gst-plugin-gtk4 = { version = "0.13", features = [
"dmabuf",
"gtk_v4_14",
"wayland",
"x11egl",
"x11glx",
] }
gtk = { package = "gtk4", version = "0.9", features = ["gnome_46"] }
once_cell = "1.19.0"
serde_yaml = "0.9.31"
serde = { version = "1.0.196", features = ["derive"] }
tracing = "0.1.36"
tracing-subscriber = "0.3.15"