diff --git a/Cargo.lock b/Cargo.lock index bf196c0..d4e534c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -165,7 +165,7 @@ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" [[package]] name = "http-request" -version = "8.0.0" +version = "8.0.1" dependencies = [ "brotli", "color-output", diff --git a/Cargo.toml b/Cargo.toml index bb83051..7730c5c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,12 +1,13 @@ [package] name = "http-request" -version = "8.0.0" +version = "8.0.1" 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"] [dependencies] brotli = "7.0.0"