Adds macro panics when no runtime selected

This commit is contained in:
James Bell 2025-01-03 19:57:39 +00:00
parent 735901a376
commit 223cd4f6c7
4 changed files with 57 additions and 7 deletions

View file

@ -1,12 +1,28 @@
[package]
name = "ntex-macros"
version = "0.1.3"
version = "0.1.4"
description = "ntex proc macros"
readme = "README.md"
authors = ["ntex contributors <team@ntex.rs>"]
license = "MIT OR Apache-2.0"
edition = "2021"
[features]
default = []
# glommio support
glommio = []
# tokio support
tokio = []
# compio support
compio = []
# async-std support
async-std = []
[lib]
proc-macro = true

View file

@ -197,6 +197,12 @@ pub fn web_patch(args: TokenStream, input: TokenStream) -> TokenStream {
/// }
/// ```
#[proc_macro_attribute]
#[cfg(any(
feature = "tokio",
feature = "async-std",
feature = "compio",
feature = "glommio"
))]
pub fn rt_main(_: TokenStream, item: TokenStream) -> TokenStream {
let mut input = syn::parse_macro_input!(item as syn::ItemFn);
let attrs = &input.attrs;
@ -223,6 +229,17 @@ pub fn rt_main(_: TokenStream, item: TokenStream) -> TokenStream {
.into()
}
#[proc_macro_attribute]
#[cfg(not(any(
feature = "tokio",
feature = "async-std",
feature = "compio",
feature = "glommio"
)))]
pub fn rt_main(_: TokenStream, _: TokenStream) -> TokenStream {
panic!("Runtime must be selected '--feature=ntex/$runtime', available options are 'compio', 'tokio', 'async-std', 'glommio'");
}
/// Marks async test function to be executed by ntex runtime.
///
/// ## Usage
@ -234,6 +251,12 @@ pub fn rt_main(_: TokenStream, item: TokenStream) -> TokenStream {
/// }
/// ```
#[proc_macro_attribute]
#[cfg(any(
feature = "tokio",
feature = "async-std",
feature = "compio",
feature = "glommio"
))]
pub fn rt_test(_: TokenStream, item: TokenStream) -> TokenStream {
let input = syn::parse_macro_input!(item as syn::ItemFn);
@ -280,6 +303,17 @@ pub fn rt_test(_: TokenStream, item: TokenStream) -> TokenStream {
result.into()
}
#[proc_macro_attribute]
#[cfg(not(any(
feature = "tokio",
feature = "async-std",
feature = "compio",
feature = "glommio"
)))]
pub fn rt_test(_: TokenStream, _: TokenStream) -> TokenStream {
panic!("Runtime must be selected '--feature=ntex/$runtime', available options are 'compio', 'tokio', 'async-std', 'glommio'");
}
/// Marks async test function to be executed by ntex runtime.
///
/// ## Usage

View file

@ -13,7 +13,7 @@ fn main() {
};
}
if !clippy && features.len() > 1 {
if features.len() > 1 {
panic!(
"Only one runtime feature could be selected, current selection {:?}",
features

View file

@ -1,6 +1,6 @@
[package]
name = "ntex"
version = "2.10.0"
version = "2.11.0"
authors = ["ntex contributors <team@ntex.rs>"]
description = "Framework for composable network services"
readme = "README.md"
@ -43,16 +43,16 @@ cookie = ["coo-kie", "coo-kie/percent-encode"]
url = ["url-pkg"]
# tokio runtime
tokio = ["ntex-net/tokio"]
tokio = ["ntex-net/tokio", "ntex-macros/tokio"]
# glommio runtime
glommio = ["ntex-net/glommio"]
glommio = ["ntex-net/glommio", "ntex-macros/glommio"]
# async-std runtime
async-std = ["ntex-net/async-std"]
async-std = ["ntex-net/async-std", "ntex-macros/async-std"]
# compio runtime
compio = ["ntex-net/compio"]
compio = ["ntex-net/compio", "ntex-macros/compio"]
# websocket support
ws = ["dep:sha-1"]