proc-macro3

defines a macro that imports either from proc_macro or proc-macro2 depending on the proc-macro2 feature flag.

Examples

```rust procmacro3::import!(); // creates a module named 'procmacro' use proc_macro::TokenStream; // uses from the newly created module

fn usestokensteam(input: TokenStream) -> TokenStream { insomeway(input) } ```