quintodrome/desktop/src-tauri/Cargo.toml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
895 B
TOML
Raw Normal View History

2026-08-24 20:49:04 -08:00
[package]
name = "quintodrome"
version = "0.1.0"
description = "Desktop wrapper that hosts Navidrome"
authors = ["Quintodrome"]
edition = "2021"
[lib]
name = "quintodrome_lib"
crate-type = ["staticlib", "cdylib", "rlib"]
[build-dependencies]
tauri-build = { version = "2", features = [] }
[dependencies]
2026-08-25 02:50:10 -08:00
tauri = { version = "2", features = ["unstable"] }
2026-08-24 20:49:04 -08:00
tauri-plugin-shell = "2"
2026-08-25 03:37:40 -08:00
tauri-plugin-opener = "2"
2026-08-24 20:49:04 -08:00
serde_json = "1"
thiserror = "1"
[target.'cfg(unix)'.dependencies]
libc = "0.2"
2026-08-25 03:00:32 -08:00
[target.'cfg(target_os = "macos")'.dependencies]
objc2 = "0.6"
2026-08-25 13:54:27 -08:00
objc2-app-kit = { version = "0.3", features = ["NSApplication", "NSEvent"] }
2026-08-25 03:00:32 -08:00
objc2-web-kit = { version = "0.3", features = ["WKWebView"] }
block2 = "0.6"
2026-08-25 03:00:32 -08:00
2026-08-24 20:49:04 -08:00
[features]
# This feature is used for production builds or when `devPath` points to the
# filesystem and the built-in dev server is disabled.
custom-protocol = ["tauri/custom-protocol"]