Update the Cargo.toml and the README
This commit is contained in:
parent
dcb7b73f93
commit
71e94bb6d1
12
Cargo.toml
12
Cargo.toml
|
@ -1,16 +1,15 @@
|
||||||
[package]
|
[package]
|
||||||
|
|
||||||
name = "cpal"
|
name = "cpal"
|
||||||
version = "0.2.12"
|
version = "0.3.0"
|
||||||
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>"]
|
authors = ["The CPAL contributors", "Pierre Krieger <pierre.krieger1708@gmail.com>"]
|
||||||
description = "Cross-platform audio playing library in pure Rust."
|
description = "Low-level cross-platform audio playing library in pure Rust."
|
||||||
repository = "https://github.com/tomaka/cpal"
|
repository = "https://github.com/tomaka/cpal"
|
||||||
documentation = "http://tomaka.github.io/cpal/"
|
documentation = "http://tomaka.github.io/cpal/"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
keywords = ["audio", "sound"]
|
keywords = ["audio", "sound"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
futures = { git = "https://github.com/alexcrichton/futures-rs" }
|
futures = "0.1.0"
|
||||||
libc = "0.2"
|
libc = "0.2"
|
||||||
lazy_static = "0.2"
|
lazy_static = "0.2"
|
||||||
winapi = "0.2.8"
|
winapi = "0.2.8"
|
||||||
|
@ -35,6 +34,3 @@ path = "alsa-sys"
|
||||||
|
|
||||||
[target.x86_64-apple-darwin.dependencies]
|
[target.x86_64-apple-darwin.dependencies]
|
||||||
coreaudio-rs = "0.6"
|
coreaudio-rs = "0.6"
|
||||||
|
|
||||||
[dev-dependencies]
|
|
||||||
vorbis = "0"
|
|
||||||
|
|
|
@ -1,10 +1,13 @@
|
||||||
# CPAL - Cross-platform audio library
|
# 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/)
|
[Documentation](http://tomaka.github.io/cpal/)
|
||||||
|
|
||||||
```toml
|
```toml
|
||||||
[dependencies]
|
[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.
|
||||||
|
|
Loading…
Reference in New Issue