This commit is contained in:
2026-03-30 11:04:04 +02:00
commit db9201e2ed
38 changed files with 1191 additions and 0 deletions

31
Cargo.toml Normal file
View File

@@ -0,0 +1,31 @@
[package]
name = "tauri-video02"
version = "0.1.0"
description = "A Tauri Video App"
authors = ["sinus@sasedev.net"]
edition = "2024"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
# The `_lib` suffix may seem redundant but it is necessary
# to make the lib name unique and wouldn't conflict with the bin name.
# This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519
name = "tauri_video02_lib"
crate-type = ["staticlib", "cdylib", "rlib"]
[build-dependencies]
tauri-build = { version = "2", features = [] }
[dependencies]
base64 = { version = "^0.22", features = [] }
chrono = { version = "^0.4", features = ["clock", "serde"] }
dirs = { version = "^6.0", features = [] }
gstreamer = { version = "^0.25", features = ["serde"] }
gstreamer-app = "0.25.0"
serde = { version = "^1.0", features = ["derive"] }
serde_json = { version = "^1.0", features = [] }
tauri = { version = "^2.10", features = ["default"] }
tauri-plugin-opener = { version = "^2.5", features = [] }
tracing = { version = "^0.1", features = ["async-await", "log"] }
tracing-subscriber = { version = "^0.3", features = ["ansi", "env-filter", "chrono", "serde", "json"] }