-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Moved advanced_requests.rs to glue - Added lint reasons and changed `allow` to `expect` whwew relevant - `Mapper::ConditionChain` and `StringModification::StringMatcherChain`
- Loading branch information
1 parent
dcbf4a6
commit 9443dd2
Showing
30 changed files
with
206 additions
and
151 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,19 @@ | ||
//! "Glue" to make working with types from other crates easier. | ||
#[cfg(feature = "regex" )] mod regex; | ||
#[cfg(feature = "regex" )] pub use regex::*; | ||
#[cfg(feature = "glob" )] mod glob; | ||
#[cfg(feature = "glob" )] pub use glob::*; | ||
#[cfg(feature = "commands")] mod command; | ||
#[cfg(feature = "commands")] pub use command::*; | ||
#[cfg(feature = "http" )] pub mod proxy; | ||
#[cfg(feature = "http" )] pub use proxy::*; | ||
#[cfg(feature = "http" )] pub(crate) mod headermap; | ||
#[cfg(feature = "http" )] pub(crate) mod headervalue; | ||
#[cfg(feature = "http" )] pub(crate) mod method; | ||
#[cfg(feature = "cache" )] mod caching; | ||
#[cfg(feature = "cache" )] pub use caching::*; | ||
#[cfg(feature = "base64" )] mod base64; | ||
#[cfg(feature = "base64" )] pub use base64::*; | ||
#[cfg(feature = "regex" )] mod regex; | ||
#[cfg(feature = "regex" )] pub use regex::*; | ||
#[cfg(feature = "glob" )] mod glob; | ||
#[cfg(feature = "glob" )] pub use glob::*; | ||
#[cfg(feature = "commands" )] mod command; | ||
#[cfg(feature = "commands" )] pub use command::*; | ||
#[cfg(feature = "advanced-requests")] mod advanced_requests; | ||
#[cfg(feature = "advanced-requests")] pub use advanced_requests::*; | ||
#[cfg(feature = "http" )] pub mod proxy; | ||
#[cfg(feature = "http" )] pub use proxy::*; | ||
#[cfg(feature = "http" )] pub(crate) mod headermap; | ||
#[cfg(feature = "http" )] pub(crate) mod headervalue; | ||
#[cfg(feature = "http" )] pub(crate) mod method; | ||
#[cfg(feature = "cache" )] mod caching; | ||
#[cfg(feature = "cache" )] pub use caching::*; | ||
#[cfg(feature = "base64" )] mod base64; | ||
#[cfg(feature = "base64" )] pub use base64::*; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
//! Glue to make using [`base64`] easier. | ||
//! | ||
//! Enabled by the `base64` feature flag. | ||
use std::str::FromStr; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.