summaryrefslogtreecommitdiff
path: root/vendor/hyper/src/cfg.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/hyper/src/cfg.rs')
-rw-r--r--vendor/hyper/src/cfg.rs44
1 files changed, 0 insertions, 44 deletions
diff --git a/vendor/hyper/src/cfg.rs b/vendor/hyper/src/cfg.rs
deleted file mode 100644
index 71a5351d..00000000
--- a/vendor/hyper/src/cfg.rs
+++ /dev/null
@@ -1,44 +0,0 @@
-macro_rules! cfg_feature {
- (
- #![$meta:meta]
- $($item:item)*
- ) => {
- $(
- #[cfg($meta)]
- #[cfg_attr(docsrs, doc(cfg($meta)))]
- $item
- )*
- }
-}
-
-macro_rules! cfg_proto {
- ($($item:item)*) => {
- cfg_feature! {
- #![all(
- any(feature = "http1", feature = "http2"),
- any(feature = "client", feature = "server"),
- )]
- $($item)*
- }
- }
-}
-
-cfg_proto! {
- macro_rules! cfg_client {
- ($($item:item)*) => {
- cfg_feature! {
- #![feature = "client"]
- $($item)*
- }
- }
- }
-
- macro_rules! cfg_server {
- ($($item:item)*) => {
- cfg_feature! {
- #![feature = "server"]
- $($item)*
- }
- }
- }
-}