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 = new;
hm.insert;
hm.insert;
hm.insert;
hm.insert;
// create TlsClient instance
let client = new;
// make request, in similar syntax to reqwest
let req = &client.get
.headers
.send
.unwrap;
println!;