areq_h1/
lib.rs

1mod bytes;
2mod client;
3mod error;
4mod handler;
5mod headers;
6#[cfg(test)]
7mod test;
8
9pub mod body {
10    pub use areq_body::*;
11}
12
13pub use crate::{
14    client::{Config, FetchBody, Requester},
15    error::Error,
16    handler::ReadStrategy,
17};