Cargo.toml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. [package]
  2. name = "hoppscotch-desktop"
  3. version = "0.0.0"
  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.4.0", features = [] }
  12. [dependencies]
  13. tauri = { version = "1.4.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.0"
  25. reqwest = "0.11.20"
  26. serde_json = "1.0.107"
  27. url = "2.4.1"
  28. hex_color = "2.0.0"
  29. [target.'cfg(target_os = "macos")'.dependencies]
  30. cocoa = "0.25.0"
  31. objc = "0.2.7"
  32. [target.'cfg(target_os = "windows")'.dependencies]
  33. windows = { version = "0.51.1", features = [
  34. "Win32_Graphics_Dwm",
  35. "Win32_Foundation",
  36. "Win32_UI_Controls",
  37. ] }
  38. [features]
  39. # this feature is used for production builds or when `devPath` points to the filesystem
  40. # DO NOT REMOVE!!
  41. custom-protocol = ["tauri/custom-protocol"]