tauri shell, window controls, permissions

This commit is contained in:
2026-03-22 05:56:55 +02:00
parent b119358d7c
commit c9d5470950
63 changed files with 9865 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
[package]
name = "jellyfin-client"
version = "0.1.0"
edition = "2021"
[build-dependencies]
tauri-build = { version = "2", features = [] }
[dependencies]
# `devtools` keeps the WebView2 inspector available in release builds
# (F12 / right-click -> Inspect). Adds a few MB to the binary but is
# essential while we're still verifying production behaviour.
tauri = { version = "2", features = ["devtools"] }
tauri-plugin-store = "2"
tauri-plugin-window-state = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
[lib]
name = "jellyfin_client_lib"
crate-type = ["lib", "cdylib", "staticlib"]