Cargo.toml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. [package]
  2. name = "hoppscotch-desktop"
  3. version = "24.7.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 = { version = "0.11.22", features = ["native-tls"] }
  27. serde_json = "1.0.108"
  28. url = "2.5.0"
  29. hex_color = "3.0.0"
  30. serde = { version = "1.0.203", features = ["derive"] }
  31. dashmap = "5.5.3"
  32. tokio = { version = "1.38.0", features = ["macros"] }
  33. tokio-util = "0.7.11"
  34. [target.'cfg(target_os = "macos")'.dependencies]
  35. cocoa = "0.25.0"
  36. objc = "0.2.7"
  37. [target.'cfg(target_os = "windows")'.dependencies]
  38. windows = { version = "0.52.0", features = [
  39. "Win32_Graphics_Dwm",
  40. "Win32_Foundation",
  41. "Win32_UI_Controls",
  42. ] }
  43. winver = "1"
  44. [features]
  45. # this feature is used for production builds or when `devPath` points to the filesystem
  46. # DO NOT REMOVE!!
  47. custom-protocol = ["tauri/custom-protocol"]