bevy/crates/bevy_internal
Miles Silberling-Cook 6b95b0137a
Switch monolithic lib to module re-exports (#13059)
# Objective

Makes crate module docs render correctly in the docs for the monolithic
library. Fixes https://github.com/bevyengine/bevy/issues/13055.

## Solution

Swap from
```rust
pub mod foo {
    pub use bevy_foo::*;
}
```
to
```rust
pub use bevy_foo as foo;
```
2024-04-22 01:32:51 +00:00
..
src Switch monolithic lib to module re-exports (#13059) 2024-04-22 01:32:51 +00:00
Cargo.toml Instrument asset loading and processing. (#12988) 2024-04-16 12:02:11 +00:00