bevy_macro_utils 0.19.0-rc.1

A collection of utils for Bevy Engine
Documentation
#![forbid(unsafe_code)]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![doc(
    html_logo_url = "https://bevy.org/assets/icon.png",
    html_favicon_url = "https://bevy.org/assets/icon.png"
)]

//! A collection of helper types and functions for working on macros within the Bevy ecosystem.

extern crate alloc;
extern crate proc_macro;

mod attrs;
mod bevy_manifest;
pub mod fq_std;
mod label;
mod member;
mod parser;
mod path;
mod path_type;
mod result_sifter;
mod shape;
mod symbol;

pub use attrs::*;
pub use bevy_manifest::*;
pub use label::*;
pub use member::*;
pub use parser::*;
pub use path::*;
pub use path_type::*;
pub use result_sifter::*;
pub use shape::*;
pub use symbol::*;