mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-03-14 18:29:07 +00:00
Some checks are pending
Build and Release / Build app (linux-arm64) (push) Blocked by required conditions
Build and Release / Prepare & create release (push) Blocked by required conditions
Build and Release / Read metadata (push) Waiting to run
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-apple-darwin, osx-arm64, macos-latest, aarch64-apple-darwin, dmg updater) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-pc-windows-msvc.exe, win-arm64, windows-latest, aarch64-pc-windows-msvc, nsis updater) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-apple-darwin, osx-x64, macos-latest, x86_64-apple-darwin, dmg updater) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-pc-windows-msvc.exe, win-x64, windows-latest, x86_64-pc-windows-msvc, nsis updater) (push) Blocked by required conditions
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-x86_64-unknown-linux-gnu, linux-x64, ubuntu-22.04, x86_64-unknown-linux-gnu, appimage deb updater) (push) Blocked by required conditions
Build and Release / Publish release (push) Blocked by required conditions
47 lines
1.5 KiB
TOML
47 lines
1.5 KiB
TOML
[package]
|
|
name = "mindwork-ai-studio"
|
|
version = "0.9.35"
|
|
edition = "2021"
|
|
description = "MindWork AI Studio"
|
|
authors = ["Thorsten Sommer"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "1.5", features = [] }
|
|
|
|
[dependencies]
|
|
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" }
|
|
serde = { version = "1.0.218", features = ["derive"] }
|
|
serde_json = "1.0.134"
|
|
keyring = { version = "3.6.2", features = ["apple-native", "windows-native", "sync-secret-service"] }
|
|
arboard = "3.4.1"
|
|
tokio = { version = "1.44", features = ["rt", "rt-multi-thread", "macros"] }
|
|
flexi_logger = "0.29.8"
|
|
log = { version = "0.4.26", features = ["kv"] }
|
|
once_cell = "1.20.3"
|
|
rocket = { version = "0.5.1", features = ["json", "tls"] }
|
|
rand = "0.9"
|
|
rand_chacha = "0.9"
|
|
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"
|
|
rcgen = { version = "0.13.2", features = ["pem"] }
|
|
|
|
# Fixes security vulnerability downstream, where the upstream is not fixed yet:
|
|
url = "2.5"
|
|
ring = "0.17.13"
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
# See issue https://github.com/tauri-apps/tauri/issues/4470
|
|
reqwest = { version = "0.12.12", features = ["native-tls-vendored"] }
|
|
|
|
# Fixes security vulnerability downstream, where the upstream is not fixed yet:
|
|
openssl = "0.10.70"
|
|
|
|
[features]
|
|
custom-protocol = ["tauri/custom-protocol"]
|