Merge pull request #38 from tomaka/rustup

Rustup and version bumps
This commit is contained in:
tomaka 2015-04-20 11:42:03 +02:00
commit e2b259c958
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;