my own fork
This commit is contained in:
parent
a8656e8021
commit
6ff166120c
4 changed files with 2565 additions and 1402 deletions
11
Cargo.toml
11
Cargo.toml
|
@ -8,7 +8,7 @@ keywords = ["gui", "iced", "video"]
|
|||
categories = ["gui", "multimedia"]
|
||||
version = "0.6.0"
|
||||
authors = ["jazzfool"]
|
||||
edition = "2021"
|
||||
edition = "2024"
|
||||
resolver = "2"
|
||||
license = "MIT OR Apache-2.0"
|
||||
exclude = [
|
||||
|
@ -16,8 +16,8 @@ exclude = [
|
|||
]
|
||||
|
||||
[dependencies]
|
||||
iced = { version = "0.13", features = ["image", "advanced", "wgpu"] }
|
||||
iced_wgpu = "0.13"
|
||||
# iced = { git = "https://github.com/iced-rs/iced", branch = "master", features = ["image", "advanced", "wgpu"] }
|
||||
iced_wgpu = { git = "https://github.com/iced-rs/iced", branch = "master"}
|
||||
gstreamer = "0.23"
|
||||
gstreamer-app = "0.23" # appsink
|
||||
gstreamer-base = "0.23" # basesrc
|
||||
|
@ -26,6 +26,11 @@ log = "0.4"
|
|||
thiserror = "1"
|
||||
url = "2" # media uri
|
||||
|
||||
[dependencies.iced]
|
||||
git = "https://github.com/iced-rs/iced"
|
||||
branch = "master"
|
||||
features = ["wgpu", "image", "advanced", "svg", "canvas", "hot", "debug", "lazy", "tokio"]
|
||||
|
||||
[package.metadata.nix]
|
||||
systems = ["x86_64-linux"]
|
||||
app = true
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue