Skip to content

Commit 208caf7

Browse files
committed
v1.0.1
1 parent c7a5add commit 208caf7

File tree

2 files changed

+7
-14
lines changed

2 files changed

+7
-14
lines changed

Cargo.toml

+5-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rquest"
3-
version = "1.0.0"
3+
version = "1.0.1"
44
description = "Asynchronous Rust HTTP client with TLS, JA3/JA4, and HTTP2 fingerprint spoof"
55
keywords = ["http", "client", "websocket", "ja3", "ja4"]
66
categories = ["web-programming::http-client"]
@@ -300,13 +300,8 @@ path = "examples/client.rs"
300300
required-features = ["full"]
301301

302302
[[example]]
303-
name = "redirect_via_proxy"
304-
path = "examples/redirect_via_proxy.rs"
305-
required-features = ["full"]
306-
307-
[[example]]
308-
name = "redirect_with_request"
309-
path = "examples/redirect_with_request.rs"
303+
name = "request_with_redirect"
304+
path = "examples/request_with_redirect.rs"
310305
required-features = ["full"]
311306

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

331326
[[example]]
332-
name = "request_via_proxy"
333-
path = "examples/request_via_proxy.rs"
327+
name = "request_with_proxy"
328+
path = "examples/request_with_proxy.rs"
334329
required-features = ["full"]
335330

336331
[[example]]

README.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,8 @@ An ergonomic, all-in-one `JA3`/`JA4`/`HTTP2` fingerprint `HTTP`/`WebSocket` clie
1414
- Redirect Policy
1515
- Cookie Store
1616
- HTTP Proxies
17-
- Restrict pool [connections](https://docs.rs/rquest/latest/rquest/struct.ClientBuilder.html#method.pool_max_size)
18-
- `HTTPS`/`WebSocket` via [BoringSSL](https://github.com/google/boringssl)
17+
- `HTTPS`/`WebSocket` via [BoringSSL](https://github.com/cloudflare/boring)
1918
- Preconfigured `TLS`/`HTTP2` settings
20-
- [Changelog](https://github.com/penumbra-x/rquest/blob/main/CHANGELOG.md)
2119

2220
Additional learning resources include:
2321

@@ -109,7 +107,7 @@ async fn main() -> Result<(), rquest::Error> {
109107
110108
## Overview
111109

112-
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.
110+
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.
113111

114112
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.
115113

0 commit comments

Comments
 (0)