├── LICENSE ├── README.md ├── cookiecutter.json └── {{ cookiecutter.project_name }} ├── .cargo └── config ├── .gitignore ├── Cargo.toml ├── README.md ├── bundler.toml ├── src └── lib.rs └── xtask ├── Cargo.toml └── src └── main.rs /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robbert-vdh/nih-plug-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robbert-vdh/nih-plug-template/HEAD/README.md -------------------------------------------------------------------------------- /cookiecutter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robbert-vdh/nih-plug-template/HEAD/cookiecutter.json -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/.cargo/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robbert-vdh/nih-plug-template/HEAD/{{ cookiecutter.project_name }}/.cargo/config -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robbert-vdh/nih-plug-template/HEAD/{{ cookiecutter.project_name }}/Cargo.toml -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robbert-vdh/nih-plug-template/HEAD/{{ cookiecutter.project_name }}/README.md -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/bundler.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robbert-vdh/nih-plug-template/HEAD/{{ cookiecutter.project_name }}/bundler.toml -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robbert-vdh/nih-plug-template/HEAD/{{ cookiecutter.project_name }}/src/lib.rs -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/xtask/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robbert-vdh/nih-plug-template/HEAD/{{ cookiecutter.project_name }}/xtask/Cargo.toml -------------------------------------------------------------------------------- /{{ cookiecutter.project_name }}/xtask/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robbert-vdh/nih-plug-template/HEAD/{{ cookiecutter.project_name }}/xtask/src/main.rs --------------------------------------------------------------------------------