54 lines
1.4 KiB
TOML
54 lines
1.4 KiB
TOML
[package]
|
|
name = "hoppscotch-desktop"
|
|
version = "24.6.0"
|
|
description = "A Tauri App"
|
|
authors = ["you"]
|
|
license = ""
|
|
repository = ""
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "1.5.0", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "1.5.3", features = [
|
|
"dialog-save",
|
|
"fs-write-file",
|
|
"http-all",
|
|
"os-all",
|
|
"shell-open",
|
|
"window-start-dragging",
|
|
"http-multipart",
|
|
"devtools"
|
|
] }
|
|
tauri-plugin-store = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1" }
|
|
tauri-plugin-deep-link = { git = "https://github.com/FabianLars/tauri-plugin-deep-link", branch = "main" }
|
|
tauri-plugin-window-state = "0.1.0"
|
|
reqwest = { version = "0.11.22", features = ["native-tls"] }
|
|
serde_json = "1.0.108"
|
|
url = "2.5.0"
|
|
hex_color = "3.0.0"
|
|
serde = { version = "1.0.203", features = ["derive"] }
|
|
dashmap = "5.5.3"
|
|
tokio = { version = "1.38.0", features = ["macros"] }
|
|
tokio-util = "0.7.11"
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
cocoa = "0.25.0"
|
|
objc = "0.2.7"
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
windows = { version = "0.52.0", features = [
|
|
"Win32_Graphics_Dwm",
|
|
"Win32_Foundation",
|
|
"Win32_UI_Controls",
|
|
] }
|
|
winver = "1"
|
|
|
|
[features]
|
|
# this feature is used for production builds or when `devPath` points to the filesystem
|
|
# DO NOT REMOVE!!
|
|
custom-protocol = ["tauri/custom-protocol"]
|