1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//! Supporting crate for [ureq](https://crates.io/crates/ureq).
//!
//! This crate contains types used to implement ureq.
//!
//!
// I don't think elided lifetimes help in understanding the code.
extern crate log;
// Re-export the basis for this library.
pub use http;
pub use Error;
pub use BodyMode;
/// Low level HTTP parser
///
/// This is to bridge `httparse` crate to `http` crate.
pub use ArrayVec;