bevy_auto_plugin 0.10.0

Procedural attribute macros for Bevy apps that reduce boilerplate by automatically registering components, resources, events, states, and systems in your plugin's build function.
Documentation
A derive macro that implements Plugin for a struct and collects registered components,
events, resources, and systems.

# Parameters
- `impl_plugin_trait` - Optional. When present, it automatically implements the Plugin trait.
- `default_plugin` - Optional (feature: `default_plugin`). Emits a default plugin alias so `auto_*` macros can omit `plugin = ...`.

# Example
```rust
use bevy::prelude::*;
use bevy_auto_plugin::prelude::*;

#[derive(AutoPlugin)]
#[auto_plugin(impl_plugin_trait)]
struct MyPlugin;

// Plugin will automatically implement the Plugin trait
// and include all registered components, events, resources, etc.
```