cargo-reaper-new
NAME
cargo-reaper-new -- Create a new REAPER extension plugin.
SYNOPSIS
cargo-reaper new
path
DESCRIPTION
This command will create a new Cargo package in the given directory that is set up for use with cargo-reaper
.
This includes a simple template with a Cargo.toml
manifest, sample source file, reaper.toml
configuration file, and a .gitignore
file.
OPTIONS
-h
--help
EXAMPLES
cargo reaper new reaper_my_plugin
Important: REAPER requires that extension plugins be prefixed by
reaper_
, otherwise REAPER will not recognize it.The
reaper_
prefix is added by default in thecargo-reaper
configuration file that is generated bycargo-reaper-new
, however,cargo-reaper
will throw an error and refuse to compile if an extension plugin listed does not meet this condition.