diff options
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/Cargo.toml b/Cargo.toml index f7e008c..13ff3a6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,15 +4,15 @@ 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" +gst = { version = "0.24.3", package = "gstreamer", features = ["v1_26"] } +gst-video = { version = "0.24.3", package = "gstreamer-video", features = ["v1_26"] } +gst-play = { version = "0.24.2", package = "gstreamer-play", features = ["v1_26"] } +gst-plugin-gtk4 = { version = "0.14", features = ["gtk_v4_20"] } +gtk = { version = "0.10.2", package = "gtk4", features = ["v4_20"] } +adw = { version = "0.8.0", package = "libadwaita", features = ["v1_8"] } +async-channel = "2.5" +relm4 = { version = "0.10.0", features = ["libadwaita"] } +relm4-components = "0.10.0" ffmpeg = { version = "8.0.0", package = "ffmpeg-next" } anyhow = "1.0" env_logger = "0.11" @@ -22,14 +22,14 @@ unicode-segmentation = "1.12.0" isolang = { git = "https://github.com/humenda/isolang-rs" } serde = { version = "1.0.228", features = ["derive"] } serde_json = "1.0.145" +relm4-icons = "0.10" [target.'cfg(target_os = "macos")'.dependencies] cocoa = "0.26" objc = "0.2.7" +[build-dependencies] +relm4-icons-build = "0.10" + [target.'cfg(target_os = "macos")'.build-dependencies] system-deps = "7" - -# TODO remove -[profile.release] -debug = true |