Files
base64
bitflags
bytes
case
cfg_if
derive_error
encoding_rs
fnv
foreign_types
foreign_types_shared
form_urlencoded
futures_channel
futures_core
futures_sink
futures_task
futures_util
h2
hashbrown
http
http_body
httparse
httpdate
hyper
hyper_tls
idna
indexmap
instant
ipnet
itoa
lazy_static
libc
lock_api
log
matches
memchr
mime
mio
native_tls
num_cpus
once_cell
openssl
openssl_probe
openssl_sys
parking_lot
parking_lot_core
percent_encoding
pin_project
pin_project_internal
pin_project_lite
pin_utils
proc_macro2
rapr
reqwest
ryu
scopeguard
serde
serde_json
serde_urlencoded
signal_hook_registry
slab
smallvec
socket2
tinyvec
tinyvec_macros
tokio
fs
future
io
loom
macros
net
park
process
runtime
signal
sync
task
time
util
tokio_macros
tokio_native_tls
tokio_util
tower_service
tracing
tracing_core
try_lock
unicode_bidi
unicode_normalization
url
want
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
pub use self::body::Body;
pub use self::client::{Client, ClientBuilder};
pub use self::request::{Request, RequestBuilder};
pub use self::response::{Response, ResponseBuilderExt};

#[cfg(feature = "blocking")]
pub(crate) use self::decoder::Decoder;

pub mod body;
pub mod client;
pub mod decoder;
#[cfg(feature = "multipart")]
pub mod multipart;
pub(crate) mod request;
mod response;