mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 16:49:06 +00:00
30 lines
928 B
TOML
30 lines
928 B
TOML
[package]
|
|
name = "mindwork-ai-studio"
|
|
version = "0.5.0"
|
|
edition = "2021"
|
|
description = "MindWork AI Studio"
|
|
authors = ["Thorsten Sommer"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "1.5", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "1.6", 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.37.0"
|
|
flexi_logger = "0.28"
|
|
log = "0.4"
|
|
|
|
[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"]
|