This plugin is deprecated.
Your binaries now execute in the workspace root, meaning paths can be declared with strings or paths as per usual.
Using the macro still works for backward compatibility:
``` rust
async fn app( #[shuttlestaticfolder::StaticFolder] staticfolder: PathBuf, ) -> _ { ... } ```
``` rust
async fn app( #[shuttlestaticfolder::StaticFolder(folder = "public")] publicfolder: PathBuf, ) -> _ { ... } ```