Skip to content

Commit

Permalink
v0.20.35
Browse files Browse the repository at this point in the history
  • Loading branch information
0x676e67 committed Aug 15, 2024
1 parent 5091f9a commit eb4cc4f
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 6 deletions.
36 changes: 36 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,42 @@

All notable changes to this project will be documented in this file.

## [unreleased]

### 🚀 Features

- *(client)* Suggest `inline` to the compiler (#122)

### Remove

- *(client)* Remove blocking client support (#123) (#124) (#125)

## [0.20.30] - 2024-08-15

### Build

- Fix `--no-default-features` build

## [0.20.25] - 2024-08-15

### 🐛 Bug Fixes

- *(client)* Fix http version setting order (#120)

### Refractor

- *(tls/settings)* Generate configuration using builder mode (#121)

## [0.20.23] - 2024-08-14

### 🚀 Features

- *(tls)* Add preconfigured TLS settings (#118)

### 🚜 Refactor

- *(client)* Set_proxies accepts an slice of references (#119)

## [0.20.22] - 2024-08-13

### 🚀 Features
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rquest"
version = "0.20.30"
version = "0.20.35"
description = "An fast asynchronous Rust Http/WebSocket Client with TLS/JA3/JA4/HTTP2 fingerprint impersonate"
keywords = ["http", "client", "websocket", "ja3", "ja4"]
categories = ["web-programming::http-client"]
Expand Down
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,11 @@ An fast asynchronous Rust `Http`/`WebSocket` Client with `TLS`/`JA3`/`JA4`/`HTTP
- Headers Order
- Customizable redirect policy
- Cookie Store
- `HTTP`/`HTTPS`/`SOCKS5` Proxies
- `HTTPS`/`WebSocket` via BoringSSL
- `Http`/`Https`/`Socks5`/`Socks5h` Proxies
- `Https`/`WebSocket` via BoringSSL
- Preconfigured `TLS`/`HTTP2` settings
- `Chrome`/`Safari`/`Edge`/`OkHttp` Fingerprint
[Changelog](https://github.com/0x676e67/rquest/blob/main/CHANGELOG.md)

Additional learning resources include:

Expand All @@ -28,7 +29,7 @@ Additional learning resources include:
This asynchronous example uses [Tokio](https://tokio.rs) and enables some
optional features, so your `Cargo.toml` could look like this:

- HTTP
HTTP

```toml
[dependencies]
Expand Down Expand Up @@ -58,7 +59,7 @@ async fn main() -> Result<(), Box<dyn Error>> {
}
```

- WebSocket
WebSocket

```toml
[dependencies]
Expand Down Expand Up @@ -96,7 +97,7 @@ async fn main() -> Result<(), Box<dyn Error>> {
}
```

- Preconfigured `TLS`/`HTTP2`
Preconfigured `TLS`/`HTTP2`

```toml
[dependencies]
Expand Down

0 comments on commit eb4cc4f

Please sign in to comment.