diff --git a/Cargo.toml b/Cargo.toml index 34d3b61..dbac8a9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "cpal" -version = "0.0.12-pre" +version = "0.0.13" authors = ["Pierre Krieger "] description = "Cross-platform audio playing library in pure Rust." repository = "https://github.com/tomaka/cpal" @@ -9,6 +9,9 @@ documentation = "http://tomaka.github.io/cpal/" license = "Apache-2.0" keywords = ["audio", "sound"] +[dependencies] +libc = "*" + [target.i686-pc-windows-gnu.dependencies.winapi] version = "0" diff --git a/alsa-sys/Cargo.toml b/alsa-sys/Cargo.toml index 01604a2..fbe913e 100644 --- a/alsa-sys/Cargo.toml +++ b/alsa-sys/Cargo.toml @@ -1,11 +1,14 @@ [package] name = "alsa-sys" -version = "0.0.2" +version = "0.0.3" authors = ["Pierre Krieger "] build = "build.rs" description = "Bindings for the ALSA project (Advanced Linux Sound Architecture)" license = "MIT" +[dependencies] +libc = "*" + [build-dependencies] pkg-config = "^0.1.1"