22 lines
610 B
TOML
22 lines
610 B
TOML
[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"]
|