wreq-util 3.0.0-rc.14

Common utilities for wreq
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![deny(unused)]
#![deny(unsafe_code)]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![cfg_attr(test, deny(warnings))]
#![cfg_attr(not(test), warn(unused_crate_dependencies))]
#![doc = include_str!("../README.md")]

#[cfg(feature = "emulation")]
pub mod emulate;
mod rand;
pub mod tower;

#[cfg(feature = "emulation")]
pub use self::emulate::{Emulation, Platform, Profile};