12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- [package]
- name = "hoppscotch-desktop"
- version = "24.10.2"
- 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.5", features = [] }
- [dependencies]
- tauri = { version = "1.8.1", features = [
- "dialog-save",
- "fs-write-file",
- "http-all",
- "os-all",
- "shell-open",
- "window-start-dragging",
- "http-multipart",
- ] }
- 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.1"
- hoppscotch-relay = { path = "../../hoppscotch-relay" }
- serde_json = "1.0.128"
- url = "2.5.2"
- hex_color = "3.0.0"
- serde = { version = "1.0.210", features = ["derive"] }
- dashmap = "5.5.3"
- tokio = { version = "1.40.0", features = ["macros"] }
- tokio-util = "0.7.12"
- log = "0.4.22"
- thiserror = "1.0.64"
- [dev-dependencies]
- tauri = { version = "1.8.1", features = ["devtools", "test"] }
- env_logger = "0.11.5"
- [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"]
|