mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 15:49:07 +00:00
31 lines
949 B
TOML
31 lines
949 B
TOML
[package]
|
|
name = "mindwork-ai-studio"
|
|
version = "0.8.6"
|
|
edition = "2021"
|
|
description = "MindWork AI Studio"
|
|
authors = ["Thorsten Sommer"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "1.5", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "1.7.1", features = [ "updater", "http-all", "shell-sidecar", "path-all", "shell-open"] }
|
|
tauri-plugin-window-state = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1" }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
keyring = "2"
|
|
arboard = "3.4.0"
|
|
tokio = "1.39"
|
|
flexi_logger = "0.28"
|
|
log = "0.4"
|
|
once_cell = "1.19.0"
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
# See issue https://github.com/tauri-apps/tauri/issues/4470
|
|
reqwest = { version = "0.12", features = ["native-tls-vendored"] }
|
|
|
|
[features]
|
|
# this feature is used for production builds or when `devPath` points to the filesystem
|
|
# DO NOT REMOVE!!
|
|
custom-protocol = ["tauri/custom-protocol"]
|