Cargo.toml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. [package]
  2. name = "hoppscotch-agent"
  3. version = "0.1.1"
  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 = ["CuriousCorrelation", "AndrewBastin"]
  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 = "2.0.1"
  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. log = "0.4.22"
  29. env_logger = "0.11.5"
  30. curl = { version = "0.4.47", features = ["ntlm", "static-curl", "static-ssl"] }
  31. openssl = { version = "0.10.68", features = ["vendored"] }
  32. openssl-sys = { version = "0.9.104", features = ["vendored"] }
  33. url-escape = "0.1.1"
  34. thiserror = "1.0.64"
  35. tauri-plugin-store = "2.0.1"
  36. x25519-dalek = { version = "2.0.1", features = ["getrandom"] }
  37. base16 = "0.2.1"
  38. aes-gcm = { version = "0.10.3", features = ["aes"] }
  39. tauri-plugin-updater = "2.0.2"
  40. tauri-plugin-dialog = "2.0.1"
  41. http = "1.1.0"
  42. lazy_static = "1.5.0"
  43. [dev-dependencies]
  44. mockito = "1.5.0"