bevy_macro_utils/lib.rs
1#![forbid(unsafe_code)]
2#![cfg_attr(docsrs, feature(doc_cfg))]
3#![doc(
4 html_logo_url = "https://bevy.org/assets/icon.png",
5 html_favicon_url = "https://bevy.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 alloc;
11extern crate proc_macro;
12
13mod attrs;
14mod bevy_manifest;
15pub mod fq_std;
16mod label;
17mod member;
18mod parser;
19mod path;
20mod path_type;
21mod result_sifter;
22mod shape;
23mod symbol;
24
25pub use attrs::*;
26pub use bevy_manifest::*;
27pub use label::*;
28pub use member::*;
29pub use parser::*;
30pub use path::*;
31pub use path_type::*;
32pub use result_sifter::*;
33pub use shape::*;
34pub use symbol::*;