mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
23 lines
729 B
Rust
23 lines
729 B
Rust
use std::{collections::HashSet, env};
|
|
|
|
fn main() {
|
|
let mut features = HashSet::<&'static str>::default();
|
|
|
|
for (key, _) 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_FEATURE_DEFAULT_RT" => features.insert("default-rt"),
|
|
_ => false,
|
|
};
|
|
}
|
|
|
|
if features.len() > 1 {
|
|
panic!(
|
|
"Only one runtime feature could be selected, current selection {:?}",
|
|
features
|
|
);
|
|
}
|
|
}
|