Rust bindings for JUCE using cxx.
JUCE is something of an industry standard for audio applications, so it would be nice to be able to make use of it from Rust.
Providing bindings for the entirety of JUCE would be a huge undertaking, and much of it would be duplicating functionality already available to Rust in the standard library or via crates.io.
The goal for this crate is to provide bindings for a subset of JUCE, in particular the mature and thoroughly battle-tested audio modules.
Add this to your Cargo.toml:
[dependencies]
cxx-juce = "0.8"Refer to the JUCE documentation for the dependencies required to build JUCE on your platform.
By default, this crate uses JUCE 7. To use JUCE 8 instead, enable the juce-8 feature. Note that this changes the licensing terms for the JUCE modules, as described in the License section below.
The juce_audio_processors module is not enabled by default, as it has additional dependencies and different licensing terms.
Enables support for hosting VST3 plugins.
Enables the ASIO backend on Windows. To build with ASIO support:
- Agree to Steinberg's licensing terms and download the ASIO SDK.
- Enable the
asiofeature for this crate. - Set the
CXX_JUCE_ASIO_SDK_DIRenvironment variable to the path of the extracted ASIO SDK.
Licensed under either of
- Apache License, Version 2.0 (LICENSE-APACHE)
- MIT license (LICENSE-MIT)
at your option.
The licenses for the JUCE modules depend on the version of JUCE being used.
The juce_core, juce_events, juce_audio_basics, and juce_audio_devices modules are permissively licensed under the terms
of the ISC license. The juce_audio_processors module is licensed under the terms of either the GPL v3 license or the JUCE commercial license.
The juce_core, juce_events, juce_audio_basics, juce_audio_devices, and juce_audio_processors modules are licensed under the terms of either the AGPL v3 license or the JUCE commercial license.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.