Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bevyengine
GitHub Repository: bevyengine/bevy
Path: blob/main/crates/bevy_macro_utils/src/lib.rs
9330 views
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
10
extern crate alloc;
11
extern crate proc_macro;
12
13
mod attrs;
14
mod bevy_manifest;
15
pub mod fq_std;
16
mod label;
17
mod member;
18
mod parser;
19
mod result_sifter;
20
mod shape;
21
mod symbol;
22
23
pub use attrs::*;
24
pub use bevy_manifest::*;
25
pub use label::*;
26
pub use member::*;
27
pub use parser::*;
28
pub use result_sifter::*;
29
pub use shape::*;
30
pub use symbol::*;
31
32