-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
25 lines (23 loc) · 852 Bytes
/
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
[package]
name = "hotaru"
version = "0.1.0"
edition = "2021"
[dependencies]
gdk-x11 = { version = "0.9.0", package = "gdk4-x11" }
gettext-rs = { version = "0.7.0", features = ["gettext-system"] }
gst = { version = "0.23.0", package = "gstreamer" }
gst-play = { version = "0.23.0", package = "gstreamer-play" }
gst-plugin-gtk4 = { version = "0.13.0" }
gst-video = { version = "0.23.0", package = "gstreamer-video" }
gtk = { version = "0.9.0", package = "gtk4" }
json = "0.12.4"
webkit = { version = "0.4.0", package = "webkit6" }
x11rb = "0.13.1"
[features]
default = ["dmabuf", "gtk_v4_14", "gst_v1_24"]
dmabuf = ["gst-plugin-gtk4/dmabuf"]
gtk_v4_14 = ["gst-plugin-gtk4/gtk_v4_14", "gtk/v4_14"]
gst_v1_24 = ["gst/v1_24", "gst-video/v1_24"]
wayland = ["gst-plugin-gtk4/wayland"]
x11egl = ["gst-plugin-gtk4/x11egl"]
x11glx = ["gst-plugin-gtk4/x11glx"]