This commit is contained in:
Nikolay Kim 2024-10-11 16:55:47 +05:00
parent 839809aaaf
commit 5d212e9e75
2 changed files with 2 additions and 1 deletions

View file

@ -11,6 +11,7 @@ categories = ["network-programming", "asynchronous"]
license = "MIT OR Apache-2.0"
build = "build.rs"
edition = "2021"
rust-version = "1.75"
[lib]
name = "ntex_rt"

View file

@ -14,7 +14,7 @@ fn main() {
}
if features.is_empty() {
panic!("Runtime must be selected, 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 {:?}",