This commit is contained in:
Nikolay Kim 2024-10-15 17:59:26 +05:00
parent bde3c15ac2
commit 0438165832

View file

@ -16,6 +16,9 @@ fn main() {
if features.is_empty() {
panic!("Runtime must be selected '--feature=ntex/$runtime', available options are \"compio\", \"tokio\", \"async-std\", \"glommio\"");
} else if features.len() > 1 {
panic!("Only one runtime feature could be selected, current selection {:?}", features);
panic!(
"Only one runtime feature could be selected, current selection {:?}",
features
);
}
}