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
//! This module abstracts over `loom` and `std::sync` depending on whether we
//! are running tests or not.

#![allow(unused)]

#[cfg(not(all(test, loom)))]
mod std;
#[cfg(not(all(test, loom)))]
pub(crate) use self::std::*;

#[cfg(all(test, loom))]
mod mocked;
#[cfg(all(test, loom))]
pub(crate) use self::mocked::*;