#tls-client #tls #networking #distributions #c-ffi #header #bogdanfinn-tls-client

bin+lib rust_tls_client

A rust tls client based on the cffi distributions of bogdanfinn/tls-client

1 unstable release

new 0.1.0 Apr 22, 2024

#4 in #c-ffi

Download history 97/week @ 2024-04-17

97 downloads per month

BSD-3-Clause

38KB
848 lines

rust_tls_client

A rust tls client based on the cffi distributions of bogdanfinn/tls-client, designed to work with, and similar to the reqwest library. Automatically downloads the latest distribution (based on system) and stores in the temp dir.

  • Note: It has only been tested on Windows 64bit.

Usage/Examples

// reqwest header map
let mut hm = HeaderMap::new();
hm.insert(ACCEPT, HeaderValue::from_static("text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9"));
hm.insert(USER_AGENT, HeaderValue::from_static("Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36"));
hm.insert(ACCEPT_ENCODING, HeaderValue::from_static("gzip, deflate, br"));
hm.insert(ACCEPT_LANGUAGE, HeaderValue::from_static("de-DE,de;q=0.9,en-US;q=0.8,en;q=0.7"));

// create TlsClient instance
let client = TlsClient::new(ClientIdentifier::Chrome105, false);

// make request, in similar syntax to reqwest
let req = &client.get("https://microsoft.com")
    .headers(hm)
    .send()
    .unwrap();

println!("{}", serde_json::to_string(&req).unwrap());

Dependencies

~19–33MB
~360K SLoC