Cargo.toml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. [package]
  2. name = "hoppscotch-desktop"
  3. version = "0.1.0"
  4. description = "Desktop App for hoppscotch.io"
  5. authors = ["CuriousCorrelation"]
  6. edition = "2021"
  7. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  8. [lib]
  9. # The `_lib` suffix may seem redundant but it is necessary
  10. # to make the lib name unique and wouldn't conflict with the bin name.
  11. # This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519
  12. name = "hoppscotch_desktop_lib"
  13. crate-type = ["staticlib", "cdylib", "rlib"]
  14. [build-dependencies]
  15. tauri-build = { version = "2", features = [] }
  16. [dependencies]
  17. tauri = { version = "2", features = [] }
  18. tauri-plugin-shell = { version = "2", features = [] }
  19. serde = { version = "1", features = ["derive"] }
  20. serde_json = { version = "1", features = [] }
  21. tracing = "0.1.41"
  22. tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
  23. tauri-plugin-store = "2.2.0"
  24. tauri-plugin-dialog = "2.2.0"
  25. tauri-plugin-fs = "2.2.0"
  26. tauri-plugin-deep-link = "2.2.0"
  27. tauri-plugin-appload = { git = "https://github.com/CuriousCorrelation/tauri-plugin-appload" }
  28. tauri-plugin-relay = { git = "https://github.com/CuriousCorrelation/tauri-plugin-relay" }
  29. axum = "0.8.1"
  30. tower-http = { version = "0.6.2", features = ["cors"] }
  31. portpicker = "0.1.1"
  32. tokio = "1.43.0"
  33. [target.'cfg(any(target_os = "macos", windows, target_os = "linux"))'.dependencies]
  34. tauri-plugin-updater = "2.3.1"