summary refs log tree commit diff
path: root/Cargo.toml
blob: ed363f70d4585725f38a70141e3b2f1893aec276 (plain)
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
[package]
name = "lleap"
version = "0.1.0"
edition = "2024"

[dependencies]
gst = { version = "0.24.1", package = "gstreamer", features = ["v1_26"] }
gst-video = { version = "0.24.1", package = "gstreamer-video", features = ["v1_26"] }
gst-play = { version = "0.24.0", package = "gstreamer-play", features = ["v1_26"] }
gst-plugin-gtk4 = { version = "0.14", features = ["gtk_v4_16"] }
gtk = { version = "0.10.0", package = "gtk4", features = ["v4_16"] }
adw = { version = "0.8.0", package = "libadwaita", features = ["v1_6"] }
async-channel = "2.0"
relm4 = { version = "0.10.0-beta.4", features = ["libadwaita"] }
relm4-components = "0.10.0-beta.4"
ffmpeg = { version = "8.0.0", package = "ffmpeg-next" }
anyhow = "1.0"
env_logger = "0.11"
log = "0.4"
tracker = "0.2.2"
unicode-segmentation = "1.12.0"
isolang = { git = "https://github.com/humenda/isolang-rs" }

[target.'cfg(target_os = "macos")'.dependencies]
cocoa = "0.26"
objc = "0.2.7"

[target.'cfg(target_os = "macos")'.build-dependencies]
system-deps = "7"

# TODO remove
[profile.release]
debug = true