Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bevyengine
GitHub Repository: bevyengine/bevy
Path: blob/main/crates/bevy_macro_utils/src/lib.rs
6849 views
1
#![forbid(unsafe_code)]
2
#![cfg_attr(docsrs, feature(doc_auto_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 parser;
18
mod result_sifter;
19
mod shape;
20
mod symbol;
21
22
pub use attrs::*;
23
pub use bevy_manifest::*;
24
pub use label::*;
25
pub use parser::*;
26
pub use result_sifter::*;
27
pub use shape::*;
28
pub use symbol::*;
29
30