jack-sys 0.2.3

Low-level binding to the JACK audio API.
Documentation
1
2
3
4
5
6
7
fn main() {
    // pkg-config is required to find PipeWire's implementation of libjack
    // Refer to https://github.com/RustAudio/rust-jack/issues/142 for details.
    // Do not unwrap this because linking might still work if pkg-config is
    // not installed, for example on Windows.
    let _ = pkg_config::probe_library("jack");
}