* Add Unsloth desktop deep links * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Address deep-link review feedback --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
56 lines
1.6 KiB
TOML
56 lines
1.6 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 = { version = "2", features = ["deep-link"] }
|
|
tauri-plugin-deep-link = "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"
|
|
arboard = "3.6.1"
|
|
tauri-plugin-dialog = "2"
|
|
rand = "0.10.0"
|
|
tauri-plugin-notification = "2.3.3"
|
|
tempfile = "3"
|
|
tauri-plugin-window-state = "2"
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
libc = "0.2"
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
gdk = "0.18"
|
|
gdk-pixbuf = "0.18"
|
|
glib = "0.18"
|
|
gtk = "0.18"
|
|
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"]
|