mirror of
https://github.com/RustAudio/rodio
synced 2024-11-10 06:04:16 +00:00
The cpal version requirement is too low causing #573
Specifically cpal changed `SupportedStreamConfigRange` and made it Copy.
As that relaxes the requirements on it its a non breaking change. Rodio was
then refactored to remove the now no longer needed `.clone()` in 77c5c54
. That
clone however is still needed for Rodio users with a lower cpal version. This
commit fixes that by requiring a higher cpal version.
This commit is contained in:
parent
a9045662b2
commit
1d15760f3e
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ exclude = ["assets/**", "tests/**"]
|
|||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
cpal = "0.15"
|
||||
cpal = "0.15.3"
|
||||
claxon = { version = "0.4.2", optional = true }
|
||||
hound = { version = "3.3.1", optional = true }
|
||||
lewton = { version = "0.10", optional = true }
|
||||
|
|
Loading…
Reference in a new issue