This commit is contained in:
Nikolay Kim 2024-10-15 17:48:39 +05:00
parent b5f7810b79
commit bde3c15ac2

View file

@ -14,11 +14,8 @@ fn main() {
}
if features.is_empty() {
panic!("Runtime must be selected '--feature=ntex\\$runtime', available options are \"compio\", \"tokio\", \"async-std\", \"glommio\"");
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);
}
}