Cargo.toml 884 B

123456789101112131415161718192021
  1. [package]
  2. name = "hoppscotch-relay"
  3. version = "0.1.1"
  4. description = "A HTTP request-response relay used by Hoppscotch Desktop and Hoppscotch Agent for advanced request handling including custom headers, certificates, proxies, and local system integration."
  5. authors = ["CuriousCorrelation"]
  6. edition = "2021"
  7. [dependencies]
  8. curl = { git = "https://github.com/CuriousCorrelation/curl-rust.git", features = ["ntlm"] }
  9. tokio-util = "0.7.12"
  10. openssl = { version = "0.10.66", features = ["vendored"] }
  11. # NOTE: This crate follows `openssl-sys` from https://github.com/CuriousCorrelation/curl-rust.git
  12. # to avoid issues from version mismatch when compiling from source.
  13. openssl-sys = { version = "0.9.64", features = ["vendored"] }
  14. log = "0.4.22"
  15. env_logger = "0.11.5"
  16. thiserror = "1.0.64"
  17. http = "1.1.0"
  18. url-escape = "0.1.1"
  19. serde = { version = "1", features = ["derive"] }
  20. serde_json = "1"