AI-Studio/runtime/Cargo.toml

31 lines
949 B
TOML
Raw Normal View History

2024-03-28 21:26:48 +00:00
[package]
name = "mindwork-ai-studio"
2024-07-26 06:56:26 +00:00
version = "0.8.4"
2024-03-28 21:26:48 +00:00
edition = "2021"
description = "MindWork AI Studio"
authors = ["Thorsten Sommer"]
[build-dependencies]
tauri-build = { version = "1.5", features = [] }
[dependencies]
2024-07-26 10:21:14 +00:00
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" }
2024-03-28 21:26:48 +00:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
2024-04-05 20:23:01 +00:00
keyring = "2"
arboard = "3.4.0"
2024-07-26 10:21:14 +00:00
tokio = "1.39"
flexi_logger = "0.28"
log = "0.4"
2024-06-30 13:26:28 +00:00
once_cell = "1.19.0"
2024-03-28 21:26:48 +00:00
2024-06-23 17:33:21 +00:00
[target.'cfg(target_os = "linux")'.dependencies]
# See issue https://github.com/tauri-apps/tauri/issues/4470
reqwest = { version = "0.12", features = ["native-tls-vendored"] }
2024-03-28 21:26:48 +00:00
[features]
# this feature is used for production builds or when `devPath` points to the filesystem
# DO NOT REMOVE!!
custom-protocol = ["tauri/custom-protocol"]