mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 13:27:39 +03:00
fmt
This commit is contained in:
parent
bde3c15ac2
commit
0438165832
1 changed files with 4 additions and 1 deletions
|
@ -16,6 +16,9 @@ fn main() {
|
||||||
if features.is_empty() {
|
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 {
|
} 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
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue