mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Allow to skip runtime feature for clippy run (#440)
This commit is contained in:
parent
dedb7de64c
commit
cb0c03f266
4 changed files with 95 additions and 9 deletions
|
@ -1,24 +1,33 @@
|
|||
use std::{collections::HashSet, env};
|
||||
|
||||
fn main() {
|
||||
let mut clippy = false;
|
||||
let mut features = HashSet::<&'static str>::default();
|
||||
|
||||
for (key, _val) in env::vars() {
|
||||
for (key, val) in env::vars() {
|
||||
let _ = match key.as_ref() {
|
||||
"CARGO_FEATURE_COMPIO" => features.insert("compio"),
|
||||
"CARGO_FEATURE_TOKIO" => features.insert("tokio"),
|
||||
"CARGO_FEATURE_GLOMMIO" => features.insert("glommio"),
|
||||
"CARGO_FEATURE_ASYNC_STD" => features.insert("async-std"),
|
||||
"CARGO_CFG_FEATURE" => {
|
||||
if val.contains("cargo-clippy") {
|
||||
clippy = true;
|
||||
}
|
||||
false
|
||||
}
|
||||
_ => false,
|
||||
};
|
||||
}
|
||||
|
||||
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
|
||||
);
|
||||
if !clippy {
|
||||
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
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue