1
0
Fork 0
Go to file
Robbert van der Helm 3064132821 Improve and simplify token handling in macros
The standard library macros also use a `$($foo:tt)*` for this, so we
should probably too. Since eprinln!() already handles trailing commas we
don't need to do any special handling, and this fixes parsing with
complex expressions as arguments.
2022-01-28 14:47:26 +01:00
nih_plug_derive Split finding and processing proc macro attributes 2022-01-28 13:00:36 +01:00
plugins/gain Add a simple formatters library 2022-01-28 14:33:29 +01:00
src Improve and simplify token handling in macros 2022-01-28 14:47:26 +01:00
.gitignore Initial commit 2022-01-24 21:00:37 +01:00
Cargo.lock Implement most of the VST3 parameter handling 2022-01-27 00:19:50 +01:00
Cargo.toml Implement most of the VST3 parameter handling 2022-01-27 00:19:50 +01:00
COPYING Initial commit 2022-01-24 21:00:37 +01:00
README.md Add some sort of description to the readme 2022-01-26 12:07:37 +01:00

NIH plugs

Because of course we need to remake everything from scratch!

This is a work in progress JUCE-lite-lite written in Rust to do some experiments with. The idea is to have a statefull but simple plugin API without too much magic, while also cutting unnecessary ceremony wherever possible. Since this is not meant for general use (yet), the plugin API is limited to the functionality I needed, and I'll expose more functionality as I need it. See the doc comment in the Plugin trait for an incomplete list of missing functionality.