| Crates.io | ym2149-bevy |
| lib.rs | ym2149-bevy |
| version | 0.6.1 |
| created_at | 2025-10-29 16:58:07.747407+00 |
| updated_at | 2025-11-21 17:12:14.546734+00 |
| description | [DEPRECATED] Bevy audio plugin for YM2149 PSG emulator - Use 'bevy_ym2149' instead |
| homepage | https://github.com/slippyex/ym2149-rs |
| repository | https://github.com/slippyex/ym2149-rs |
| max_upload_size | |
| id | 1906953 |
| size | 143,752 |
⚠️ This crate has been renamed to bevy_ym2149
This crate is now a compatibility shim that re-exports everything from bevy_ym2149. It will continue to work, but we recommend migrating to bevy_ym2149 for future updates.
Update your Cargo.toml:
# Old (deprecated)
ym2149-bevy = "0.6.1"
# New (recommended)
bevy_ym2149 = "0.6.1"
Update your imports:
// Old
use ym2149_bevy::Ym2149Plugin;
// New
use bevy_ym2149::Ym2149Plugin;
The Bevy plugin ecosystem follows a naming convention where plugins are named bevy_* instead of *_bevy. This makes it easier to discover Bevy plugins and maintain consistency across the ecosystem.
All public APIs remain unchanged. Your code will continue to work with this crate, but you'll receive deprecation warnings. The shim will be maintained alongside the new bevy_ym2149 crate for backward compatibility.
For the full documentation and latest features, see bevy_ym2149.