-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #122 from mitchmindtree/dag
Switch from using petgraph directly to the daggy crate. Massively improve API. Add documentation link.
- Loading branch information
Showing
7 changed files
with
633 additions
and
372 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,25 @@ | ||
language: rust | ||
rust: | ||
- nightly | ||
- stable | ||
- nightly | ||
- stable | ||
notifications: | ||
email: | ||
- [email protected] | ||
email: | ||
- [email protected] | ||
os: | ||
- linux | ||
- osx | ||
- linux | ||
env: | ||
- LD_LIBRARY_PATH: /usr/local/lib | ||
matrix: | ||
- LD_LIBRARY_PATH: /usr/local/lib | ||
global: | ||
secure: H/FCcjwpQQNeWGRM6zrDojNwRJud/FsAu5N6iGz2kxog0v7FFSuFreYeklNfwX+4Mf+BtYYpblZ8xHF24tOmJHeOMKwGPBoopyjXzJx+QVd3mlj30dmvm1/jcy/7pzH0Q2GhVhSbBtV+BCQvjUXZ/PNk9/wiMSxnNtTchyAOpHQ= | ||
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) | ||
- 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 | ||
- rustc --version | ||
- cargo --version | ||
script: | ||
- cargo build --verbose | ||
- cargo test --verbose | ||
- cargo doc --verbose | ||
- cargo build --verbose | ||
- cargo test --verbose | ||
- cargo doc --verbose |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
|
||
name = "dsp-chain" | ||
version = "0.6.0" | ||
version = "0.7.0" | ||
authors = [ | ||
"mitchmindtree <[email protected]>", | ||
"bvssvni <[email protected]>", | ||
|
@@ -21,6 +21,6 @@ name = "dsp" | |
path = "./src/lib.rs" | ||
|
||
[dependencies] | ||
daggy = "0.1.3" | ||
num = { version = "0.1.27", default-features = false } | ||
petgraph = "0.1.11" | ||
sound_stream = "0.4.4" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.