49 lines
1.4 KiB
TOML
49 lines
1.4 KiB
TOML
[package]
|
|
name = "unsloth-studio"
|
|
version = "2026.4.8"
|
|
description = "Unsloth Studio Desktop App"
|
|
authors = ["Unsloth AI"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = ["tray-icon"] }
|
|
tauri-plugin-single-instance = "2"
|
|
tauri-plugin-process = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
base64 = "0.22"
|
|
hmac = "0.13"
|
|
sha2 = "0.11"
|
|
reqwest = { version = "0.12", features = ["json"] }
|
|
tokio = { version = "1", features = ["full"] }
|
|
log = "0.4"
|
|
simplelog = "0.12"
|
|
dirs = "6"
|
|
regex = "1"
|
|
open = "5"
|
|
process-wrap = { version = "9", features = ["std"] }
|
|
fix-path-env = { git = "https://github.com/tauri-apps/fix-path-env-rs" }
|
|
tauri-plugin-opener = "2.5.4"
|
|
tauri-plugin-updater = "2"
|
|
tauri-plugin-clipboard-manager = "2"
|
|
tauri-plugin-dialog = "2"
|
|
rand = "0.10.0"
|
|
tauri-plugin-notification = "2.3.3"
|
|
tauri-plugin-window-state = "2"
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
libc = "0.2"
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
elevated-command = "1.1.2"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
windows = { version = "0.62.2", features = ["Win32_System_Threading"] }
|
|
windows-sys = { version = "0.61", features = ["Win32_Foundation", "Win32_Security", "Win32_System_Console", "Win32_System_JobObjects", "Win32_System_Threading"] }
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[features]
|
|
default = ["custom-protocol"]
|
|
custom-protocol = ["tauri/custom-protocol"]
|