Rustup and version bumps

This commit is contained in:
Pierre Krieger 2015-04-20 09:30:36 +02:00
parent 5403e91f26
commit d85f969caf
3 changed files with 2 additions and 3 deletions

View File

@ -1,7 +1,7 @@
[package]
name = "cpal"
version = "0.0.19"
version = "0.0.20"
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>"]
description = "Cross-platform audio playing library in pure Rust."
repository = "https://github.com/tomaka/cpal"

View File

@ -1,7 +1,7 @@
[package]
name = "alsa-sys"
version = "0.0.7"
version = "0.0.8"
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>"]
build = "build.rs"
description = "Bindings for the ALSA project (Advanced Linux Sound Architecture)"

View File

@ -24,7 +24,6 @@ impl SampleFormat {
}
/// Trait for containers that contain PCM data.
#[unstable = "Will be rewritten with associated types"]
pub trait Sample: Copy + Clone {
fn get_format(Option<Self>) -> SampleFormat;