1 unstable release
Uses new Rust 2024
new 0.1.1 | Apr 3, 2025 |
---|
#14 in #vst
Used in 21 crates
(20 directly)
145KB
1.5K
SLoC
Aloe VST Types
Aloe VST Types is a Rust crate providing type definitions and trait implementations for building and interacting with VST (Virtual Studio Technology) plugins. This crate abstractly models Steinberg’s VST SDK interfaces and associated data types to facilitate operations such as interface querying, dependency management, and prefetchable support for audio processing plugins.
Features
- Defines various VST-compatible enums, structs, and type aliases to represent plugin elements and configurations.
- Mimics Steinberg's COM-like interface management with reference counting and interface querying.
- Provides trait implementations that reflect audio plugin capabilities like
IPrefetchableSupport
,IUpdateHandler
, and cloning viaICloneable
. - Includes macro definitions for standardized operations and interface definitions.
- Supports both plugin implementations and host interactions, covering a wide range of functionality from dependency handling to UID generation and management.
Installation
Add the following line to your Cargo.toml
to include Aloe VST Types in your project:
[dependencies]
aloe-vst-types = "0.1.0"
Usage
Import the crate into your Rust project:
extern crate aloe_vst_types;
use aloe_vst_types::*;
This gives access to all the provided traits, types, and macros to aid in the development of VST plugins. The crate implements typical operations for audio plugin development and supports the integration with Steinberg's VST SDK.
Documentation
Extensive API documentation can be found at (Insert Documentation URL here). It covers detailed usage and design guidelines to leverage the crate’s functionality effectively.
License
This crate is licensed under the GPL-3.0 license. Please see the LICENSE file for further information.
Note: This README.md file was generated by an AI model and may not be fully accurate. However, it should be a solid starting point for understanding the crate’s capabilities.
This crate is a translation of the JUCE module.
JUCE is a c++ software framework for developing high performance audio applications.
Usage falls under the GPLv3 as well as the JUCE commercial license.
See github.com/juce-framework/JUCE and the JUCE license page for details.
This crate is in the process of being translated from c++ to rust. For progress updates, please see the workspacer rust project. designed specifically for rust projects.
Dependencies
~13–27MB
~376K SLoC