44 lines
768 B
TOML
44 lines
768 B
TOML
[package]
|
|
name = "video-player"
|
|
version = "1.0.0"
|
|
description = "Video Player with remote control support"
|
|
authors = [ "Your Name" ]
|
|
license = "MIT"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "video_player_lib"
|
|
crate-type = [
|
|
"staticlib",
|
|
"cdylib",
|
|
"rlib"
|
|
]
|
|
|
|
[build-dependencies.tauri-build]
|
|
version = "2.3.0"
|
|
features = [ ]
|
|
|
|
[dependencies]
|
|
tauri-plugin-shell = "2.3.0"
|
|
tauri-plugin-notification = "2.3.0"
|
|
tauri-plugin-os = "2.3.0"
|
|
tauri-plugin-fs = "2.4.0"
|
|
tauri-plugin-store = "2.3.0"
|
|
serde_json = "1"
|
|
tokio = { version = "1", features = ["full"] }
|
|
tokio-tungstenite = "0.24"
|
|
futures-util = "0.3"
|
|
log = "0.4"
|
|
env_logger = "0.11"
|
|
|
|
[dependencies.tauri]
|
|
version = "2.6.2"
|
|
features = [
|
|
"tray-icon",
|
|
"unstable"
|
|
]
|
|
|
|
[dependencies.serde]
|
|
version = "1"
|
|
features = [ "derive" ]
|