Add impersonation capabilites

Update lib.rs
This commit is contained in:
4JX
2022-08-10 18:18:22 +02:00
parent c2a1870a3e
commit b22267618c
12 changed files with 710 additions and 28 deletions

View File

@@ -217,6 +217,11 @@ macro_rules! if_hyper {
)*}
}
/// Re-export of boring to keep versions in check
#[cfg(feature = "__boring")]
pub use boring;
#[cfg(feature = "__boring")]
pub use boring_sys;
pub use http::header;
pub use http::Method;
pub use http::{StatusCode, Version};
@@ -225,6 +230,8 @@ pub use url::Url;
// universal mods
#[macro_use]
mod error;
#[cfg(feature = "__browser_common")]
pub mod browser;
mod into_url;
mod response;