Cargo.toml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. [package]
  2. name = "hoppscotch-desktop"
  3. version = "24.10.2"
  4. description = "A Tauri App"
  5. authors = ["you"]
  6. license = ""
  7. repository = ""
  8. edition = "2021"
  9. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  10. [build-dependencies]
  11. tauri-build = { version = "1.5.5", features = [] }
  12. [dependencies]
  13. tauri = { version = "1.8.1", features = [
  14. "dialog-save",
  15. "fs-write-file",
  16. "http-all",
  17. "os-all",
  18. "shell-open",
  19. "window-start-dragging",
  20. "http-multipart",
  21. ] }
  22. tauri-plugin-store = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1" }
  23. tauri-plugin-deep-link = { git = "https://github.com/FabianLars/tauri-plugin-deep-link", branch = "main" }
  24. tauri-plugin-window-state = "0.1.1"
  25. hoppscotch-relay = { path = "../../hoppscotch-relay" }
  26. serde_json = "1.0.128"
  27. url = "2.5.2"
  28. hex_color = "3.0.0"
  29. serde = { version = "1.0.210", features = ["derive"] }
  30. dashmap = "5.5.3"
  31. tokio = { version = "1.40.0", features = ["macros"] }
  32. tokio-util = "0.7.12"
  33. log = "0.4.22"
  34. thiserror = "1.0.64"
  35. [dev-dependencies]
  36. tauri = { version = "1.8.1", features = ["devtools", "test"] }
  37. env_logger = "0.11.5"
  38. [target.'cfg(target_os = "macos")'.dependencies]
  39. cocoa = "0.25.0"
  40. objc = "0.2.7"
  41. [target.'cfg(target_os = "windows")'.dependencies]
  42. windows = { version = "0.52.0", features = [
  43. "Win32_Graphics_Dwm",
  44. "Win32_Foundation",
  45. "Win32_UI_Controls",
  46. ] }
  47. winver = "1"
  48. [features]
  49. # this feature is used for production builds or when `devPath` points to the filesystem
  50. # DO NOT REMOVE!!
  51. custom-protocol = ["tauri/custom-protocol"]