chrootable-https Build Status Build status crates.io docs.rs

If you ever tried chrooting an https client into an empty folder you probably ran into two problems:

This crate is working around those issues by using:

We're also trying to avoid C dependencies and stick to safe rust as much as possible.

Examples

```rust extern crate chrootablehttps; use chrootablehttps::{Resolver, Client};

let resolver = Resolver::cloudflare(); let client = Client::new(resolver);

let reply = client.get("https://httpbin.org/anything").expect("request failed"); println!("{:#?}", reply); ```

License

LGPL-3+