48 lines
1.7 KiB
TOML
48 lines
1.7 KiB
TOML
[package]
|
|
name = "iced_video_player"
|
|
description = "A convenient video player widget for Iced"
|
|
homepage = "https://github.com/jazzfool/iced_video_player"
|
|
repository = "https://github.com/jazzfool/iced_video_player"
|
|
readme = "README.md"
|
|
keywords = ["gui", "iced", "video"]
|
|
categories = ["gui", "multimedia"]
|
|
version = "0.6.0"
|
|
authors = ["jazzfool"]
|
|
edition = "2024"
|
|
resolver = "2"
|
|
license = "MIT OR Apache-2.0"
|
|
exclude = [
|
|
".media/test.mp4"
|
|
]
|
|
|
|
[dependencies]
|
|
iced = { git = "https://github.com/iced-rs/iced.git", rev = "482d54118a733231cdceb4ab8eef2419fbec385e", features = ["smol", "wgpu", "image", "advanced"], default-features = false }
|
|
iced_wgpu = { git = "https://github.com/iced-rs/iced.git", rev = "482d54118a733231cdceb4ab8eef2419fbec385e" }
|
|
gstreamer = "0.23.5"
|
|
gstreamer-app = "0.23.5" # appsink
|
|
gstreamer-base = "0.23.5" # basesrc
|
|
glib = "0.20.9" # gobject traits and error type
|
|
log = "0.4.27"
|
|
thiserror = "2.0.12"
|
|
url = "2.5.4" # media uri
|
|
yuvutils-rs = "0.8.2"
|
|
|
|
[package.metadata.nix]
|
|
systems = ["x86_64-linux"]
|
|
app = true
|
|
build = true
|
|
runtimeLibs = [
|
|
"vulkan-loader",
|
|
"wayland",
|
|
"wayland-protocols",
|
|
"libxkbcommon",
|
|
"xorg.libX11",
|
|
"xorg.libXrandr",
|
|
"xorg.libXi", "gst_all_1.gstreamer", "gst_all_1.gstreamermm", "gst_all_1.gst-plugins-bad", "gst_all_1.gst-plugins-ugly", "gst_all_1.gst-plugins-good", "gst_all_1.gst-plugins-base",
|
|
]
|
|
buildInputs = ["libxkbcommon", "gst_all_1.gstreamer", "gst_all_1.gstreamermm", "gst_all_1.gst-plugins-bad", "gst_all_1.gst-plugins-ugly", "gst_all_1.gst-plugins-good", "gst_all_1.gst-plugins-base"]
|
|
|
|
[package.metadata.docs.rs]
|
|
rustc-args = ["--cfg", "docsrs"]
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
targets = ["wasm32-unknown-unknown"]
|