portaudio 0.3.6

Portaudio binding for Rust
docs.rs failed to build portaudio-0.3.6
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: portaudio-0.7.0

rust-portaudio Build Status

Portaudio bindings for Rust

PortAudio is a free, cross-platform, open-source, audio I/O library. These are the bindings and wrappers for Rust.

PortAudio website : http://portaudio.com

Rust-PortAudio use the same license as PortAudio : the MIT license.

Rust-PortAudio is still under heavy development, so there will probably be bugs.

Only the blocking API is exposed at the moment.

Using rust-portaudio.

To use rust-portaudio in your own project, add it to your Cargo.toml dependencies like so:

[dependencies]
portaudio = "*"

Installation

rust-portaudio will try to detect portaudio on your system and, failing that (or if given the PORTAUDIO_ONLY_STATIC environment variable on the build process), will download and build portaudio statically.

rust-portaudio is built using cargo, so just type cargo build at the root of the rust-portaudio repository.

You can build the tests and examples with cargo test, and the documentation with cargo doc.