Closed
Description
What problem does this solve or what need does it fill?
In bevy_audio
, Decodable::Decoder
requires rodio::source::Source
and Decodable::DecoderItem
requires rodio::Sample
, which in turn, requires cpal::Sample
.
Therefore, users who want to define their own Decodable types must manually import rodio and cpal.
What solution would you like?
- pub use
rodio::source::Source
,rodio::Sample
, andcpal::Sample
.
What alternative(s) have you considered?
- Just make the users manually import the required dependencies. This will cause problems when the user wants to use a different version of rodio and cpal for other purposes.
Metadata
Metadata
Assignees
Labels
Type
Projects
Status
Done