simplist 0.0.5

plain and simple http, for when you just want to make a darn request! supports tokio-based async, traditional sync and async-await models.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/// a conditionally included string.
///
/// when the "scramble" feature is enabled, this string will be replaced with the empty string. otherwise, it's included
/// verbatim.
#[cfg(not(feature = "scramble"))]
macro_rules! d {
    ($value: tt) => { $value };
}

/// a conditionally included string.
///
/// when the "scramble" feature is enabled, this string will be replaced with the empty string. otherwise, it's included
/// verbatim.
#[cfg(feature = "scramble")]
macro_rules! d {
    ($value: tt) => { "" };
}