We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e0ab46 commit 51296b3Copy full SHA for 51296b3
src/lib.rs
@@ -9,18 +9,13 @@
9
not(cfg_auto_docs),
10
any(
11
all(
12
- feature = "tokio-rustls",
13
- any(
14
- feature = "tokio-native-tls",
15
- feature = "async-std-native-tls",
16
- feature = "async-std-rustls"
17
- )
+ feature = "tokio",
+ feature = "async-std"
18
),
19
20
21
- any(feature = "async-std-native-tls", feature = "async-std-rustls")
+ feature = "native-tls",
+ feature = "async-std-rustls"
22
23
- all(feature = "async-std-native-tls", feature = "async-std-rustls")
24
)
25
))]
26
compile_error!("Using multiple runtime / tls configurations at the same time is not allowed");
0 commit comments