1 2 3 4 5 6 7 8 9 10 11 12 13 14
//! Compile-time bridge from Rust kernel functions to Ruda IR. use proc_macro::TokenStream; use quote::quote; use syn::Item; #[cfg(feature = "kernel-ir")] #[allow(clippy::large_enum_variant)] mod ir; #[cfg(feature = "kernel-ir")] include!("ir/entrypoints.rs");