1//! Rust macro toolkit. 2 3pub extern crate quote; 4pub extern crate syn; 5 6pub use proc_macro2::Span; 7 8pub mod meta;