AI-Studio/runtime/Cargo.toml

43 lines
1.4 KiB
TOML
Raw Normal View History

2024-03-28 21:26:48 +00:00
[package]
name = "mindwork-ai-studio"
2025-01-04 18:38:06 +00:00
version = "0.9.25"
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]
2025-01-01 14:49:27 +00:00
tauri = { version = "1.8", features = [ "http-all", "updater", "shell-sidecar", "shell-open", "dialog"] }
tauri-plugin-window-state = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1" }
2025-01-01 17:05:26 +00:00
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.134"
keyring = { version = "3.6.1", features = ["apple-native", "windows-native", "sync-secret-service"] }
2024-10-28 14:59:36 +00:00
arboard = "3.4.1"
2025-01-01 17:05:26 +00:00
tokio = { version = "1.42", features = ["rt", "rt-multi-thread", "macros"] }
flexi_logger = "0.29.8"
2024-09-01 18:10:03 +00:00
log = { version = "0.4", features = ["kv"] }
2025-01-01 17:05:26 +00:00
once_cell = "1.20"
rocket = { version = "0.5.1", features = ["json", "tls"] }
2024-09-01 18:10:03 +00:00
rand = "0.8"
rand_chacha = "0.3.1"
base64 = "0.22.1"
cipher = { version = "0.4.4", features = ["std"] }
aes = "0.8.4"
cbc = "0.1.2"
pbkdf2 = "0.12.2"
hmac = "0.12.1"
sha2 = "0.10.8"
2025-01-01 17:05:26 +00:00
rcgen = { version = "0.13.2", features = ["pem"] }
# Fixes security vulnerability downstream, where the upstream is not fixed yet:
url = "2.5"
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]
custom-protocol = ["tauri/custom-protocol"]