proc_use_inline 0.1.1

A different syntax for mod and use
Documentation

proc_use_inline

proc_use_inline is a Rust crate offering an alternate syntax for mod and use statements. Take the following Rust code:

mod foo;
use foo::*;

use itertools::*;

#[path = "../other/ext.rs"]
mod ext;

This literally translates into:

proc_macro_inline::proc_macro_inline! {
	#[mod]
	use foo::*;
	
	use itertools::*;
	
	mod("../other/ext.rs");
}