Force runtime selection (#435)

This commit is contained in:
Nikolay Kim 2024-10-11 17:37:59 +05:00 committed by GitHub
parent b0a7658bf1
commit 5a907c8ed8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 41 additions and 95 deletions

24
ntex-rt/build.rs Normal file
View file

@ -0,0 +1,24 @@
use std::{collections::HashSet, env};
fn main() {
let mut features = HashSet::<&'static str>::default();
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"),
_ => 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
);
}
}