tropel-http 0.6.0

HTTP protocol implementation for Tropel: reqwest client, connection pooling, redirects, per-VU cookie jar. Auth signers live in tropel-auth. INTERNAL — not a supported crate; depend on tropel-runtime instead.
Documentation
//! # tropel-http
//!
//! HTTP Protocol implementation: reqwest client, connection pooling,
//! redirects, per-VU cookie jar. Auth signers live in `tropel-auth`
//! (extracted so the executor and wasm slice can depend on them without
//! pulling in the full HTTP stack).

pub mod blocking;
pub mod client;
pub mod config;
pub mod dns;
pub mod proxy;
pub mod rps;
pub mod subtimings;
pub mod vu_jar;

pub use client::*;
pub use config::*;
pub use dns::*;
pub use proxy::*;
pub use rps::*;