1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
macro_rules! cfg_feature {
	($feature:literal, $($item:item)*) => {
		$(
			#[cfg(feature = $feature)]
			#[cfg_attr(docsrs, doc(cfg(feature = $feature)))]
			$item
		)*
}
}

macro_rules! cfg_client {
	($($item:item)*) => {
		cfg_feature!("client", $($item)*);
	};
}

macro_rules! cfg_server {
 ($($item:item)*) => {
		cfg_feature!("server", $($item)*);
	};
}

macro_rules! cfg_client_or_server {
	($($item:item)*) => {
		$(
			#[cfg(any(feature = "client", feature = "server"))]
			$item
		)*
	}
}

macro_rules! cfg_http_helpers {
 ($($item:item)*) => {
		cfg_feature!("http-helpers", $($item)*);
	};
}

macro_rules! cfg_async_client {
	($($item:item)*) => {
		$(
			#[cfg(any(feature = "async-wasm-client", feature = "async-client"))]
			#[cfg_attr(docsrs, doc(cfg(feature = "async-client")))]
			#[cfg_attr(docsrs, doc(cfg(feature = "async-wasm-client")))]
			$item
		)*
	}
}