pub fn execute(args: &BuildArgs) -> Result<(), String>Expand description
Execute the build command
Builds the application in debug mode with codegen.
§Mode Behavior
- Debug Mode with Codegen: Compile-time code generation without optimizations
- Faster compilation than release mode
- Useful for debugging production codegen behavior
- Use
dampen releasefor optimized production builds
§Examples
# Basic debug build with codegen
dampen build
# Build specific package in workspace
dampen build -p my-app
# Enable additional features
dampen build --features tokio,logging