Cargo.toml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. [package]
  2. name = "hoppscotch-agent"
  3. version = "0.1.4"
  4. description = "A cross-platform HTTP request agent for Hoppscotch for advanced request handling including custom headers, certificates, proxies, and local system integration."
  5. authors = ["AndrewBastin", "CuriousCorrelation"]
  6. edition = "2021"
  7. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  8. [lib]
  9. name = "hoppscotch_agent_lib"
  10. crate-type = ["staticlib", "cdylib", "rlib"]
  11. [build-dependencies]
  12. tauri-build = { version = "2.0.1", features = [] }
  13. [dependencies]
  14. tauri = { version = "2.0.4", features = ["tray-icon", "image-png"] }
  15. tauri-plugin-shell = "2.0.1"
  16. tauri-plugin-autostart = { version = "2.0.1", optional = true }
  17. serde = { version = "1", features = ["derive"] }
  18. serde_json = "1"
  19. tokio = { version = "1.40.0", features = ["full"] }
  20. dashmap = { version = "6.1.0", features = ["serde"] }
  21. axum = { version = "0.7.7" }
  22. axum-extra = { version = "0.9.4", features = ["typed-header"] }
  23. tower-http = { version = "0.6.1", features = ["cors"] }
  24. tokio-util = "0.7.12"
  25. uuid = { version = "1.11.0", features = [ "v4", "fast-rng" ] }
  26. chrono = { version = "0.4", features = ["serde"] }
  27. rand = "0.8.5"
  28. tracing = "0.1.40"
  29. tracing-subscriber = { version = "0.3.18", features = ["env-filter", "json", "fmt", "std", "time"] }
  30. tracing-appender = "0.2.3"
  31. relay = { git = "https://github.com/CuriousCorrelation/relay.git" }
  32. thiserror = "1.0.64"
  33. tauri-plugin-store = "2.1.0"
  34. x25519-dalek = { version = "2.0.1", features = ["getrandom"] }
  35. base16 = "0.2.1"
  36. aes-gcm = { version = "0.10.3", features = ["aes"] }
  37. tauri-plugin-updater = "2.0.2"
  38. tauri-plugin-dialog = "2.0.1"
  39. lazy_static = "1.5.0"
  40. tauri-plugin-single-instance = "2.0.1"
  41. tauri-plugin-http = { version = "2.0.1", features = ["gzip"] }
  42. native-dialog = "0.7.0"
  43. sha2 = "0.10.8"
  44. [target.'cfg(windows)'.dependencies]
  45. tempfile = { version = "3.13.0" }
  46. winreg = { version = "0.52.0" }
  47. [features]
  48. default = ["tauri-plugin-autostart"]
  49. portable = []