From d85f969caf249ab535baf4d65a7cba0c6eb46f9d Mon Sep 17 00:00:00 2001 From: Pierre Krieger Date: Mon, 20 Apr 2015 09:30:36 +0200 Subject: [PATCH] Rustup and version bumps --- Cargo.toml | 2 +- alsa-sys/Cargo.toml | 2 +- src/samples_formats.rs | 1 - 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4753d48..08cc427 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "cpal" -version = "0.0.19" +version = "0.0.20" authors = ["Pierre Krieger "] description = "Cross-platform audio playing library in pure Rust." repository = "https://github.com/tomaka/cpal" diff --git a/alsa-sys/Cargo.toml b/alsa-sys/Cargo.toml index 111b64e..ac4fc5f 100644 --- a/alsa-sys/Cargo.toml +++ b/alsa-sys/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "alsa-sys" -version = "0.0.7" +version = "0.0.8" authors = ["Pierre Krieger "] build = "build.rs" description = "Bindings for the ALSA project (Advanced Linux Sound Architecture)" diff --git a/src/samples_formats.rs b/src/samples_formats.rs index d5d6287..8d4dfe9 100644 --- a/src/samples_formats.rs +++ b/src/samples_formats.rs @@ -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) -> SampleFormat;