Registry / other / vst
library0.4.0rscratesunverified

VST 2.4 API implementation in Rust for creating plugins or hosts.

# Cargo.toml [dependencies] vst = "0.4.0"
INSTALL
IMPORT
SIG · VST
V
vst
otherrustv0.4.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Plugin
✓ use vst::plugin::Plugin;

Minimal VST plugin implementation.

use vst::plugin::Plugin; struct MyPlugin; impl Plugin for MyPlugin { fn get_info(&self) -> vst::api::Info { vst::api::Info { name: "My Plugin".to_string(), vendor: "Me".to_string(), unique_id: 1234, version: 1, ..Default::default() } } fn process(&mut self, buffer: &mut vst::buffer::AudioBuffer) {} }
Debug
Known issues
gotchaRequires platform-specific audio libraries (e.g., ALSA on Linux, CoreAudio on macOS).
fix
Install system dependencies: libasound2-dev on Debian/Ubuntu.
affects: >=0.4.0
Upgrade
Version history
0.4.0latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
17 hits · last 30 days
node
16
Amazon
1
Resources
vst — cargo add vst · libregistry