40 lines
1.6 KiB
TOML
40 lines
1.6 KiB
TOML
[package]
|
|
name = "tauri-video03"
|
|
version = "0.2.1"
|
|
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_video03_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 = [] }
|
|
cpal = { version = "^0.17", features = [] }
|
|
futures-util = { version = "^0.3", features = [] }
|
|
gstreamer = { version = "^0.25", features = ["serde"] }
|
|
gstreamer-app = { version = "^0.25", features = [] }
|
|
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 = [] }
|
|
tauri-plugin-websocket = "2"
|
|
tokio = { version = "^1.50", features = ["full"] }
|
|
tokio-tungstenite = { version = "^0.29", features = ["rustls", "tokio-rustls", "url"] }
|
|
tracing = { version = "^0.1", features = ["async-await", "log"] }
|
|
tracing-subscriber = { version = "^0.3", features = ["ansi", "env-filter", "chrono", "serde", "json"] }
|
|
ts-rs = { version = "^12.0", features = [] }
|
|
uuid = { version = "^1.23", features = ["v4"] }
|
|
webrtc = { version = "^0.17", features = [] }
|