Build
Compile the current package
SYNOPSIS
cargo buckal build [options]
DESCRIPTION
Compile local packages and all of their dependencies.
This command is equivalent to running buck2 build manually, but provides options that are semantically compatible with Cargo.
OPTIONS
-r, --releaseBuild optimized artifacts with thereleaseprofile.-v...Use verbose output. May be specified twice for “very verbose” output--libBuild the package’s library.--bin <NAME>Build the specified binary. This flag may be specified multiple times and supports common Unix glob patterns.--binsBuild all binary targets.--example <NAME>Build the specified example. This flag may be specified multiple times and supports common Unix glob patterns.--examplesBuild all example targets.--all-targetsBuild all targets. This is equivalent to invokingbuck2 build cell//path/to/package/....