bevy_macro_utils/
lib.rs

1#![forbid(unsafe_code)]
2#![cfg_attr(docsrs, feature(doc_auto_cfg))]
3#![doc(
4    html_logo_url = "https://bevyengine.org/assets/icon.png",
5    html_favicon_url = "https://bevyengine.org/assets/icon.png"
6)]
7
8//! A collection of helper types and functions for working on macros within the Bevy ecosystem.
9
10extern crate proc_macro;
11
12mod attrs;
13mod bevy_manifest;
14pub mod fq_std;
15mod label;
16mod shape;
17mod symbol;
18
19pub use attrs::*;
20pub use bevy_manifest::*;
21pub use label::*;
22pub use shape::*;
23pub use symbol::*;