├── .appveyor.yml ├── .gitignore ├── .travis.yml ├── Cargo.toml ├── LICENSE ├── README.md ├── appveyor_rust_install.ps1 ├── examples ├── dimension_expander │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── simple_host.rs └── sine_synth │ ├── Cargo.toml │ └── src │ └── lib.rs ├── osx_vst_bundler.sh └── src ├── api.rs ├── buffer.rs ├── channels.rs ├── editor.rs ├── event.rs ├── host.rs ├── interfaces.rs ├── lib.rs └── plugin.rs /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overdrivenpotato/rust-vst2/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overdrivenpotato/rust-vst2/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overdrivenpotato/rust-vst2/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overdrivenpotato/rust-vst2/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overdrivenpotato/rust-vst2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overdrivenpotato/rust-vst2/HEAD/README.md -------------------------------------------------------------------------------- /appveyor_rust_install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overdrivenpotato/rust-vst2/HEAD/appveyor_rust_install.ps1 -------------------------------------------------------------------------------- /examples/dimension_expander/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overdrivenpotato/rust-vst2/HEAD/examples/dimension_expander/Cargo.toml -------------------------------------------------------------------------------- /examples/dimension_expander/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overdrivenpotato/rust-vst2/HEAD/examples/dimension_expander/src/lib.rs -------------------------------------------------------------------------------- /examples/simple_host.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overdrivenpotato/rust-vst2/HEAD/examples/simple_host.rs -------------------------------------------------------------------------------- /examples/sine_synth/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overdrivenpotato/rust-vst2/HEAD/examples/sine_synth/Cargo.toml -------------------------------------------------------------------------------- /examples/sine_synth/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overdrivenpotato/rust-vst2/HEAD/examples/sine_synth/src/lib.rs -------------------------------------------------------------------------------- /osx_vst_bundler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overdrivenpotato/rust-vst2/HEAD/osx_vst_bundler.sh -------------------------------------------------------------------------------- /src/api.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overdrivenpotato/rust-vst2/HEAD/src/api.rs -------------------------------------------------------------------------------- /src/buffer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overdrivenpotato/rust-vst2/HEAD/src/buffer.rs -------------------------------------------------------------------------------- /src/channels.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overdrivenpotato/rust-vst2/HEAD/src/channels.rs -------------------------------------------------------------------------------- /src/editor.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overdrivenpotato/rust-vst2/HEAD/src/editor.rs -------------------------------------------------------------------------------- /src/event.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overdrivenpotato/rust-vst2/HEAD/src/event.rs -------------------------------------------------------------------------------- /src/host.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overdrivenpotato/rust-vst2/HEAD/src/host.rs -------------------------------------------------------------------------------- /src/interfaces.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overdrivenpotato/rust-vst2/HEAD/src/interfaces.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overdrivenpotato/rust-vst2/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/plugin.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/overdrivenpotato/rust-vst2/HEAD/src/plugin.rs --------------------------------------------------------------------------------