dsp-chain 0.5.6

Provides a Node trait and a Graph type for chaining together audio generators/processors in a dsp graph.
language: rust
rust:
    - nightly
    - stable
notifications:
    email:
        - mitchell.nordine@gmail.com
os:
    - linux
    - osx
env:
    - LD_LIBRARY_PATH: /usr/local/lib
install:
    - curl -O http://www.portaudio.com/archives/pa_stable_v19_20140130.tgz
    - tar xfz pa_stable_v19_20140130.tgz
    - (cd portaudio/ && ./configure && make && sudo make install)
before_script:
    - rustc --version
    - cargo --version
script:
    - cargo build --verbose
    - cargo test --verbose
    - cargo doc --verbose