Update the Cargo.toml and the README

This commit is contained in:
Pierre Krieger 2016-08-12 17:51:15 +02:00
parent dcb7b73f93
commit 71e94bb6d1
2 changed files with 10 additions and 11 deletions

View File

@ -1,16 +1,15 @@
[package]
name = "cpal"
version = "0.2.12"
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>"]
description = "Cross-platform audio playing library in pure Rust."
version = "0.3.0"
authors = ["The CPAL contributors", "Pierre Krieger <pierre.krieger1708@gmail.com>"]
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"

View File

@ -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.