mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-04-29 06:59:47 +00:00
32 lines
1.1 KiB
TOML
32 lines
1.1 KiB
TOML
[package]
|
|
name = "mindwork-ai-studio"
|
|
version = "0.8.12"
|
|
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 = { version = "3.2", features = ["apple-native", "windows-native", "sync-secret-service"] }
|
|
arboard = "3.4.0"
|
|
tokio = { version = "1.39", features = ["rt", "rt-multi-thread", "macros"] }
|
|
flexi_logger = "0.28"
|
|
log = "0.4"
|
|
once_cell = "1.19.0"
|
|
rocket = { version = "0.5", default-features = false, features = ["json"] }
|
|
rand = "0.8"
|
|
rand_chacha = "0.3.1"
|
|
|
|
[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]
|
|
custom-protocol = ["tauri/custom-protocol"]
|