token-goblin-runtime 0.1.0

Runtime support types for token-goblin generated inline procedural macros.
Documentation
//! Runtime support for code generated by `token-goblin` macros.

pub mod ux;
mod wire;

/// Prelude for generated code.
pub mod prelude {

    pub use proc_macro2::*;
    pub use quote::*;
    pub use std::str::FromStr;
    pub use syn;

    pub use crate::ux::{CommaSeparated, Token};
    pub use crate::{output, output_str};
}
pub use ux::{IntoTokenStream, TokenStreamInto};

pub use wire::{Output, entry};