Skip to content

Commit

Permalink
Added: --jack
Browse files Browse the repository at this point in the history
  • Loading branch information
subalterngames committed May 4, 2024
1 parent e53ebd3 commit a091d92
Show file tree
Hide file tree
Showing 4 changed files with 159 additions and 43 deletions.
189 changes: 148 additions & 41 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ edition = "2021"
serde_json = "1.0"
rust-ini = "0.18"
directories = "5.0.1"
midir = "0.9.1"
midir = "0.10.0"
csv = "1.2.1"
cpal = "0.13.1"
hound = "3.5.0"
Expand Down Expand Up @@ -83,6 +83,7 @@ branch = "speech_dispatcher_voices_panic"
[features]
speech_dispatcher_0_11 = ["text/speech_dispatcher_0_11"]
speech_dispatcher_0_9 = ["text/speech_dispatcher_0_9"]
jack = ["input/jack"]

[package]
name = "cacophony"
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,11 @@ Windows:

1. `cargo build --release`

### OpenBSD

1. Install and configure jack
1. `cargo build --release --features jack

## Tests

To test, just `cargo test --all`.
Expand Down
5 changes: 4 additions & 1 deletion input/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,7 @@ parking_lot = { workspace = true }
clap = { workspace = true }

[dependencies.common]
path = "../common"
path = "../common"

[features]
jack = ["midir/jack"]

0 comments on commit a091d92

Please sign in to comment.