Skip to content

Commit

Permalink
v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
0x676e67 committed Dec 27, 2024
1 parent c7a5add commit 208caf7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 14 deletions.
15 changes: 5 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rquest"
version = "1.0.0"
version = "1.0.1"
description = "Asynchronous Rust HTTP client with TLS, JA3/JA4, and HTTP2 fingerprint spoof"
keywords = ["http", "client", "websocket", "ja3", "ja4"]
categories = ["web-programming::http-client"]
Expand Down Expand Up @@ -300,13 +300,8 @@ path = "examples/client.rs"
required-features = ["full"]

[[example]]
name = "redirect_via_proxy"
path = "examples/redirect_via_proxy.rs"
required-features = ["full"]

[[example]]
name = "redirect_with_request"
path = "examples/redirect_with_request.rs"
name = "request_with_redirect"
path = "examples/request_with_redirect.rs"
required-features = ["full"]

[[example]]
Expand All @@ -329,8 +324,8 @@ path = "examples/request_with_version.rs"
required-features = ["full"]

[[example]]
name = "request_via_proxy"
path = "examples/request_via_proxy.rs"
name = "request_with_proxy"
path = "examples/request_with_proxy.rs"
required-features = ["full"]

[[example]]
Expand Down
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,8 @@ An ergonomic, all-in-one `JA3`/`JA4`/`HTTP2` fingerprint `HTTP`/`WebSocket` clie
- Redirect Policy
- Cookie Store
- HTTP Proxies
- Restrict pool [connections](https://docs.rs/rquest/latest/rquest/struct.ClientBuilder.html#method.pool_max_size)
- `HTTPS`/`WebSocket` via [BoringSSL](https://github.com/google/boringssl)
- `HTTPS`/`WebSocket` via [BoringSSL](https://github.com/cloudflare/boring)
- Preconfigured `TLS`/`HTTP2` settings
- [Changelog](https://github.com/penumbra-x/rquest/blob/main/CHANGELOG.md)

Additional learning resources include:

Expand Down Expand Up @@ -109,7 +107,7 @@ async fn main() -> Result<(), rquest::Error> {
## Overview

The predecessor of rquest is [reqwest](https://github.com/seanmonstar/reqwest). rquest is a specialized adaptation based on the reqwest project, supporting [BoringSSL](https://github.com/google/boringssl) and related `HTTP/2` fingerprints in requests.
The predecessor of rquest is [reqwest](https://github.com/seanmonstar/reqwest). rquest is a specialized adaptation based on the reqwest project, supporting [BoringSSL]() and related `HTTP/2` fingerprints in requests.

It also optimizes commonly used APIs and enhances compatibility with connection pools, making it easier to switch proxies, `IP` addresses, and interfaces. You can directly migrate from a project using reqwest to rquest.

Expand Down

0 comments on commit 208caf7

Please sign in to comment.