Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bevyengine
GitHub Repository: bevyengine/bevy
Path: blob/main/crates/bevy_macro_utils/src/lib.rs
6595 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 shape;
18
mod symbol;
19
20
pub use attrs::*;
21
pub use bevy_manifest::*;
22
pub use label::*;
23
pub use shape::*;
24
pub use symbol::*;
25
26