Crates.io | cf-reqwest |
lib.rs | cf-reqwest |
version | 0.13.0 |
source | src |
created_at | 2023-04-12 16:40:58.693363 |
updated_at | 2024-09-24 07:35:56.821702 |
description | higher level HTTP client library |
homepage | |
repository | https://github.com/cloudflare/cf-reqwest |
max_upload_size | |
id | 837059 |
size | 820,866 |
An ergonomic, batteries-included HTTP Client for Rust.
Client
sThis is a fork of the great reqwest library with some features that were not accepted to the upstream:
We advice to use the upstream version of the library, unless you need any of those features.
This asynchronous example uses Tokio and enables some
optional features, so your Cargo.toml
could look like this:
[dependencies]
reqwest = { version = "0.12", features = ["json"] }
tokio = { version = "1", features = ["full"] }
And then the code:
use std::collections::HashMap;
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error>> {
let resp = cf_reqwest::get("https://httpbin.org/ip")
.await?
.json::<HashMap<String, String>>()
.await?;
println!("{resp:#?}");
Ok(())
}
On Linux:
native-tls-vendored
feature to compile a copy of OpenSSL.On Windows and macOS:
Reqwest uses rust-native-tls, which will use the operating system TLS framework if available, meaning Windows and macOS. On Linux, it will use the available OpenSSL or fail to build if not found.
Licensed under either of
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.