[package] name = "http-request" version = "8.34.0" edition = "2021" authors = ["ltpp-universe "] license = "MIT" description = """http-request is a lightweight, efficient library for building, sending, and handling HTTP/HTTPS requests in Rust applications. It provides a simple and intuitive API, allowing developers to easily interact with web services, whether they use the "HTTP" or "HTTPS" protocol. The library supports various HTTP methods, custom headers, request bodies, timeout, automatic handling of redirects (including detecting redirect loops), and enhanced response body decoding (both automatic and manual), enabling fast and secure communication. Whether working with secure "HTTPS" connections or standard "HTTP" requests, the library is optimized for performance, minimal resource usage, and easy integration into Rust projects.""" keywords = ["http", "request", "response", "tcp", "redirect"] repository = "https://github.com/ltpp-universe/http-request.git" categories = ["network-programming", "web-programming"] exclude = [ "target", "Cargo.lock", "sh", ".github" ] [dependencies] brotli = "7.0.0" flate2 = "1.0.35" hex = "0.4.3" http-compress = "1.13.0" http-type = "2.27.0" rustls = "0.23.20" serde = { version = "1.0.217", features = ["derive"] } serde-xml-rs = "0.6.0" serde_json = "1.0.133" serde_urlencoded = "0.7.1" url = "2.5.4" urlencoding = "2.1.3" webpki-roots = "0.26.7" [dev-dependencies] color-output = "6.1.4" std-macro-extensions = "0.18.0" [profile.dev] incremental = true opt-level = 3 lto = true panic = "abort" [profile.release] opt-level = 3 lto = true panic = "abort"