22 lines
597 B
TOML
22 lines
597 B
TOML
[package]
|
|
name = "decky"
|
|
version = "0.2.0"
|
|
description = "A focused cross-platform client for Nextcloud Deck"
|
|
authors = ["Elijah Kuntz"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "decky_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
keyring = { version = "3.6.3", features = ["apple-native", "windows-native", "sync-secret-service"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
tauri = { version = "2", features = [] }
|
|
tauri-plugin-http = "2"
|
|
tauri-plugin-process = "2"
|
|
tauri-plugin-updater = "2"
|