specters 2.1.2

HTTP client with full TLS, HTTP/2, and HTTP/3 fingerprint control
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! HTTP transport implementations.
//!
//! - HTTP/1.1 via httparse + tokio-boring (minimal, no hyper)
//! - HTTP/2 via custom implementation (full fingerprint control)
//! - HTTP/3 via quiche

pub mod connector;
pub mod h1;
pub mod h1_h2;
pub mod h2;
pub mod h3;
pub mod session;
pub mod tcp;