api-client/packages/hoppscotch-desktop/plugin-workspace/tauri-plugin-appload/Cargo.toml
Shreyas f234e66078
feat(desktop): portable phase-2 app loader infra (#5341)
This implements backend path management, backup system, cross-platform utilities, and refactors the `appload` plugin arch to support portable mode deployment.

The changes are mainly establishing foundational infra maintaining current frontend behavior until phase-3+ integration.
2025-08-26 20:48:31 +05:30

54 lines
1.5 KiB
TOML

[package]
name = "tauri-plugin-appload"
version = "0.1.0"
authors = [ "CuriousCorrelation" ]
description = "A Tauri plugin to download and load web app into WebView"
edition = "2021"
rust-version = "1.77.2"
exclude = ["/examples", "/webview-dist", "/webview-src", "/node_modules"]
links = "tauri-plugin-appload"
[dependencies]
tauri = { version = "2.0.6" }
serde = "1.0"
serde_json = { version = "1", features = [] }
thiserror = { version = "2.0.3", features = [] }
url = { version = "2.5.3", features = ["serde"] }
reqwest = { version = "0.12.9", features = ["json"] }
zip = { version = "2.2.0", features = [] }
tokio = { version = "1.41.1", features = [] }
mime-infer = { version = "3.0.0", features = [] }
regex = { version = "1.11.1", features = [] }
tracing = "0.1.41"
dashmap = { version = "6.1.0" }
flate2 = { version = "1.0.35" }
chrono = { version = "0.4.38", features = ["serde"] }
base64 = "0.22.1"
blake3 = { version = "1.5.4", features = ["serde"] }
ed25519-dalek = { version = "2.1.1", features = ["rand_core", "serde"] }
hex = "0.4.3"
lru = "0.12.5"
sysinfo = "0.34.2"
humantime-serde = "1.1.1"
futures = "0.3.31"
mime_guess = "2.0.5"
rayon = "1.10.0"
hex_color = "3.0.0"
dunce = "1.0.5"
bon = "3.6.3"
[build-dependencies]
tauri-plugin = { version = "2.0.1", features = ["build"] }
[target.'cfg(target_os = "macos")'.dependencies]
cocoa = "0.26.0"
objc = "0.2.7"
rand = "0.8.5"
[target.'cfg(target_os = "windows")'.dependencies]
windows = { version = "0.58.0", features = [
"Win32_Graphics_Dwm",
"Win32_Foundation",
"Win32_UI_Controls",
] }
winver = "1.0.0"