Rename samples_rate.rs to sample_rate.rs to follow cpal 0.7 convention

This commit is contained in:
Francesco Zardi 2018-04-18 14:46:29 +02:00
parent 74ceb63c3c
commit 95917f2e0f
2 changed files with 2 additions and 2 deletions

View file

@ -8,10 +8,10 @@ This includes conversion between samples formats, channels or sample rates.
pub use self::channels::ChannelCountConverter;
pub use self::sample::DataConverter;
pub use self::sample::Sample;
pub use self::samples_rate::SampleRateConverter;
pub use self::sample_rate::SampleRateConverter;
mod channels;
// TODO: < shouldn't be public ; there's a bug in Rust 1.4 and below that makes This
// `pub` mandatory
pub mod sample;
mod samples_rate;
mod sample_rate;