Cargo.toml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. [package]
  2. name = "hoppscotch-desktop"
  3. version = "23.12.0-1"
  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.0", features = [] }
  12. [dependencies]
  13. tauri = { version = "1.5.3", 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. "devtools"
  22. ] }
  23. tauri-plugin-store = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1" }
  24. tauri-plugin-deep-link = { git = "https://github.com/FabianLars/tauri-plugin-deep-link", branch = "main" }
  25. tauri-plugin-window-state = "0.1.0"
  26. reqwest = "0.11.22"
  27. serde_json = "1.0.108"
  28. url = "2.5.0"
  29. hex_color = "3.0.0"
  30. [target.'cfg(target_os = "macos")'.dependencies]
  31. cocoa = "0.25.0"
  32. objc = "0.2.7"
  33. [target.'cfg(target_os = "windows")'.dependencies]
  34. windows = { version = "0.52.0", features = [
  35. "Win32_Graphics_Dwm",
  36. "Win32_Foundation",
  37. "Win32_UI_Controls",
  38. ] }
  39. [features]
  40. # this feature is used for production builds or when `devPath` points to the filesystem
  41. # DO NOT REMOVE!!
  42. custom-protocol = ["tauri/custom-protocol"]