From 71e94bb6d16789be71f54daeea447cb64e8db858 Mon Sep 17 00:00:00 2001 From: Pierre Krieger Date: Fri, 12 Aug 2016 17:51:15 +0200 Subject: [PATCH] Update the Cargo.toml and the README --- Cargo.toml | 12 ++++-------- README.md | 9 ++++++--- 2 files changed, 10 insertions(+), 11 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e81b4b1..44e1144 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,16 +1,15 @@ [package] - name = "cpal" -version = "0.2.12" -authors = ["Pierre Krieger "] -description = "Cross-platform audio playing library in pure Rust." +version = "0.3.0" +authors = ["The CPAL contributors", "Pierre Krieger "] +description = "Low-level cross-platform audio playing library in pure Rust." repository = "https://github.com/tomaka/cpal" documentation = "http://tomaka.github.io/cpal/" license = "Apache-2.0" keywords = ["audio", "sound"] [dependencies] -futures = { git = "https://github.com/alexcrichton/futures-rs" } +futures = "0.1.0" libc = "0.2" lazy_static = "0.2" winapi = "0.2.8" @@ -35,6 +34,3 @@ path = "alsa-sys" [target.x86_64-apple-darwin.dependencies] coreaudio-rs = "0.6" - -[dev-dependencies] -vorbis = "0" diff --git a/README.md b/README.md index c252ca5..7510ae8 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,13 @@ # CPAL - Cross-platform audio library -Audio player in pure Rust. Works only on win32 (WASAPI) and linux (ALSA) for the moment. - [Documentation](http://tomaka.github.io/cpal/) ```toml [dependencies] -cpal = "0.1.0" +cpal = "0.3.0" ``` + +Low-level library for audio playback in pure Rust. + +This library allows you to open a channel with the audio device of the user's machine, and +send PCM data to it.