mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 20:09:06 +00:00
Thorsten Sommer
b44a95c67b
- Add the sidecar to start the .NET server when running the app - Add proper logging - Add message handling for communication between .NET and Rust/Tauri - Add dynamic port allocation for the .NET server - Add transition to .NET app, i.e., a loading screen
25 lines
637 B
TOML
25 lines
637 B
TOML
[package]
|
|
name = "mindwork-ai-studio"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "MindWork AI Studio"
|
|
authors = ["Thorsten Sommer"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "1.5", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "1.6", features = [ "http-all", "shell-sidecar", "path-all", "shell-open"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
keyring = "2"
|
|
arboard = "3.4.0"
|
|
tokio = "1.37.0"
|
|
flexi_logger = "0.28"
|
|
log = "0.4"
|
|
|
|
[features]
|
|
# this feature is used for production builds or when `devPath` points to the filesystem
|
|
# DO NOT REMOVE!!
|
|
custom-protocol = ["tauri/custom-protocol"]
|