obel_api/
lib.rs

1//! This module is separated into its own crate to enable simple dynamic linking for Bevy, and should not be used directly
2
3#![forbid(unsafe_code)]
4#![cfg_attr(docsrs, feature(doc_auto_cfg))]
5// #![doc(html_logo_url = "assets/icon.png", html_favicon_url = "assets/icon.png")]
6#![no_std] // tells the compiler "don't automatically link std"
7
8pub use obel_diagnostic as diagnostic;
9pub use obel_platform as platform;
10pub use obel_reflect as reflect;