AI-Studio/runtime/Cargo.toml

67 lines
1.9 KiB
TOML
Raw Normal View History

2024-03-28 21:26:48 +00:00
[package]
name = "mindwork-ai-studio"
2026-05-13 12:03:36 +00:00
version = "26.5.4"
edition = "2024"
2024-03-28 21:26:48 +00:00
description = "MindWork AI Studio"
authors = ["Thorsten Sommer"]
[build-dependencies]
tauri-build = { version = "2.6.1", features = [] }
2024-03-28 21:26:48 +00:00
[dependencies]
tauri = { version = "2.11.1", features = [] }
tauri-plugin-window-state = { version = "2.4.1" }
tauri-plugin-shell = "2.3.5"
tauri-plugin-dialog = "2.7.1"
tauri-plugin-opener = "2.5.4"
2026-01-25 13:09:33 +00:00
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
2026-05-14 15:16:28 +00:00
keyring-core = "1.0.0"
2026-01-25 13:09:33 +00:00
arboard = "3.6.1"
2026-05-14 15:16:28 +00:00
tokio = { version = "1.52.3", features = ["rt", "rt-multi-thread", "macros", "process"] }
2026-01-25 13:09:33 +00:00
tokio-stream = "0.1.18"
futures = "0.3.32"
2025-04-01 18:44:43 +00:00
async-stream = "0.3.6"
2026-01-25 13:09:33 +00:00
flexi_logger = "0.31.8"
log = { version = "0.4.29", features = ["kv"] }
once_cell = "1.21.4"
2026-05-12 18:31:08 +00:00
axum = { version = "0.8.9", features = ["http2", "json", "query", "tokio"] }
axum-server = { version = "0.8.0", features = ["tls-rustls"] }
rustls = { version = "0.23.28", default-features = false, features = ["aws_lc_rs"] }
rand = "0.10.1"
rand_chacha = "0.10.0"
2024-09-01 18:10:03 +00:00
base64 = "0.22.1"
2026-05-14 15:16:28 +00:00
aes = "0.9.0"
cbc = "0.2.0"
pbkdf2 = "0.13.0"
hmac = "0.13.0"
sha2 = "0.11.0"
rcgen = { version = "0.14.8", features = ["pem"] }
file-format = "0.29.0"
2026-05-14 15:16:28 +00:00
calamine = "0.35.0"
pdfium-render = "0.9.1"
sys-locale = "0.3.2"
2026-01-25 13:09:33 +00:00
cfg-if = "1.0.4"
pptx-to-md = "0.4.0"
tempfile = "3.27.0"
strum_macros = "0.28.0"
2026-05-14 15:16:28 +00:00
sysinfo = "0.39.1"
bytes = "1.11.1"
[target.'cfg(target_os = "windows")'.dependencies]
2025-12-31 13:31:52 +00:00
windows-registry = "0.6.1"
2026-05-14 15:16:28 +00:00
windows-native-keyring-store = "1.0.0"
[target.'cfg(target_os = "macos")'.dependencies]
apple-native-keyring-store = { version = "1.0.0", features = ["keychain"] }
[target.'cfg(target_os = "linux")'.dependencies]
dbus-secret-service-keyring-store = { version = "1.0.0", features = ["crypto-rust"] }
[target.'cfg(not(any(target_os = "android", target_os = "ios")))'.dependencies]
tauri-plugin-global-shortcut = "2"
tauri-plugin-updater = "2.10.0"
2024-03-28 21:26:48 +00:00
[features]
custom-protocol = ["tauri/custom-protocol"]