aboutsummaryrefslogtreecommitdiff
path: root/mingling_macros
diff options
context:
space:
mode:
Diffstat (limited to 'mingling_macros')
-rw-r--r--mingling_macros/src/dispatcher.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mingling_macros/src/dispatcher.rs b/mingling_macros/src/dispatcher.rs
index f9dc423..915f5db 100644
--- a/mingling_macros/src/dispatcher.rs
+++ b/mingling_macros/src/dispatcher.rs
@@ -219,7 +219,7 @@ pub fn register_dispatcher(input: TokenStream) -> TokenStream {
let expanded = quote! {
#[doc(hidden)]
#[allow(nonstandard_style)]
- static #static_ident: #dispatcher_type = #dispatcher_type;
+ pub static #static_ident: #dispatcher_type = #dispatcher_type;
};
expanded.into()