jwfetch 0.3.3

package reqwest with trace
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod ajax;
pub mod error;

pub use self::{
    ajax::{get, post, request, BaseRequestConfig, RequestConfig},
    error::{CustomError, FetchError, HttpError, ParseError},
};
pub use actix_http::{
    header::{HeaderMap as ActixHeaderMap, HeaderName},
    StatusCode,
};
pub use http::Method;
pub use reqwest::header::{HeaderMap, HeaderValue};
pub use std::time::Duration;