1 2 3 4 5 6 7 8 9 10 11
#[cfg(feature = "bundled-in-process")] #[path = "build/in_process.rs"] mod implementation; #[cfg(not(feature = "bundled-in-process"))] #[path = "build/out_of_process.rs"] mod implementation; fn main() { implementation::main(); }