conformal_vst_wrapper 0.6.5

Implements a VST3-compatible plug-in for audio processors implemented with the conformal audio plug-in framework.
1
2
3
4
5
6
7
8
use serde::{Deserialize, Serialize};

use conformal_core::parameters::serialization;

#[derive(Serialize, Deserialize)]
pub struct State {
    pub params: serialization::Snapshot,
}