From 5d212e9e75d0004ff0e19cc10ee5795f1070b4a1 Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Fri, 11 Oct 2024 16:55:47 +0500 Subject: [PATCH] wip --- ntex-rt/Cargo.toml | 1 + ntex-rt/build.rs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ntex-rt/Cargo.toml b/ntex-rt/Cargo.toml index 9a2910d6..084dad6e 100644 --- a/ntex-rt/Cargo.toml +++ b/ntex-rt/Cargo.toml @@ -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" diff --git a/ntex-rt/build.rs b/ntex-rt/build.rs index 5bbb888e..dd598028 100644 --- a/ntex-rt/build.rs +++ b/ntex-rt/build.rs @@ -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 {:?}",