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 655abeb commit 2960a9bCopy full SHA for 2960a9b
src/lib.rs
@@ -7,11 +7,11 @@
7
8
#[cfg(all(feature = "rust_crypto", feature = "aws_lc_rs"))]
9
compile_error!(
10
- "feature \"rust_crypto\" and feature \"aws_lc_rs\" cannot be enabled at the same time"
+ "Feature \"rust_crypto\" and \"aws_lc_rs\" are mutually exclusive and cannot be enabled at the same time"
11
);
12
13
#[cfg(not(any(feature = "rust_crypto", feature = "aws_lc_rs")))]
14
-compile_error!("at least one of the features \"rust_crypto\" or \"aws_lc_rs\" must be enabled");
+compile_error!("Exactly one of the \"rust_crypto\" or \"aws_lc_rs\" features must be enabled");
15
16
pub use algorithms::Algorithm;
17
pub use decoding::{DecodingKey, TokenData, decode, decode_header};
0 commit comments