1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
#![allow(unused_imports)]
#![allow(unused_variables)]
#![allow(unused_assignments)]
#![allow(unused_must_use)]
#![forbid(unsafe_code)]

pub mod str_utils;

#[macro_use]
extern crate mclient_macro;
extern crate reqwest;

pub use mclient_macro::*;

pub use reqwest::{Client, Request, Error};
pub use url::Url;
pub use http::Method;