From 929bc1b8be262cda617a129d16454c0f06126e11 Mon Sep 17 00:00:00 2001 From: ferris Date: Thu, 19 Jan 2017 14:51:50 +0100 Subject: [PATCH 1/2] Add coreaudio-rs dependency for i686-apple-darwin Fixes build for 32-bit mac --- Cargo.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index c6387b0..e608251 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,5 +32,8 @@ path = "alsa-sys" version = "0.1" path = "alsa-sys" +[target.i686-apple-darwin.dependencies] +coreaudio-rs = "0.6" + [target.x86_64-apple-darwin.dependencies] coreaudio-rs = "0.6" From 6e8f51de09ebb45489d741262dfdf5255d853a1e Mon Sep 17 00:00:00 2001 From: ferris Date: Thu, 19 Jan 2017 16:06:17 +0100 Subject: [PATCH 2/2] Bump crate version to 0.4.2 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index e608251..69c548b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cpal" -version = "0.4.1" +version = "0.4.2" authors = ["The CPAL contributors", "Pierre Krieger "] description = "Low-level cross-platform audio playing library in pure Rust." repository = "https://github.com/tomaka/cpal"