pub struct Build {
Show 38 fields pub quiet: bool, pub packages: Vec<String>, pub workspace: bool, pub exclude: Vec<String>, pub all: bool, pub jobs: Option<usize>, pub lib: bool, pub bin: Vec<String>, pub bins: bool, pub example: Vec<String>, pub examples: bool, pub test: Vec<String>, pub tests: bool, pub bench: Vec<String>, pub benches: bool, pub all_targets: bool, pub release: bool, pub profile: Option<String>, pub features: Vec<String>, pub all_features: bool, pub no_default_features: bool, pub target: Option<String>, pub target_dir: Option<PathBuf>, pub out_dir: Option<PathBuf>, pub manifest_path: Option<PathBuf>, pub ignore_rust_version: bool, pub message_format: Vec<String>, pub build_plan: bool, pub unit_graph: bool, pub future_incompat_report: bool, pub verbose: usize, pub color: Option<String>, pub frozen: bool, pub locked: bool, pub offline: bool, pub config: Vec<String>, pub unstable_flags: Vec<String>, pub disable_zig_linker: bool,
}
Expand description

Compile a local package and all of its dependencies using zig as the linker

Fields

quiet: bool

Do not print cargo log messages

packages: Vec<String>

Package to build (see cargo help pkgid)

workspace: bool

Build all packages in the workspace

exclude: Vec<String>

Exclude packages from the build

all: bool

Alias for workspace (deprecated)

jobs: Option<usize>

Number of parallel jobs, defaults to # of CPUs

lib: bool

Build only this package’s library

bin: Vec<String>

Build only the specified binary

bins: bool

Build all binaries

example: Vec<String>

Build only the specified example

examples: bool

Build all examples

test: Vec<String>

Build only the specified test target

tests: bool

Build all tests

bench: Vec<String>

Build only the specified bench target

benches: bool

Build all benches

all_targets: bool

Build all targets

release: bool

Build artifacts in release mode, with optimizations

profile: Option<String>

Build artifacts with the specified Cargo profile

features: Vec<String>

Space or comma separated list of features to activate

all_features: bool

Activate all available features

no_default_features: bool

Do not activate the default feature

target: Option<String>

Build for the target triple

target_dir: Option<PathBuf>

Directory for all generated artifacts

out_dir: Option<PathBuf>

Copy final artifacts to this directory (unstable)

manifest_path: Option<PathBuf>

Path to Cargo.toml

ignore_rust_version: bool

Ignore rust-version specification in packages

message_format: Vec<String>

Error format

build_plan: bool

Output the build plan in JSON (unstable)

unit_graph: bool

Output build graph in JSON (unstable)

future_incompat_report: bool

Outputs a future incompatibility report at the end of the build (unstable)

verbose: usize

Use verbose output (-vv very verbose/build.rs output)

color: Option<String>

Coloring: auto, always, never

frozen: bool

Require Cargo.lock and cache are up to date

locked: bool

Require Cargo.lock is up to date

offline: bool

Run without accessing the network

config: Vec<String>

Override a configuration value (unstable)

unstable_flags: Vec<String>

Unstable (nightly-only) flags to Cargo, see ‘cargo -Z help’ for details

disable_zig_linker: bool

Disable zig linker

Implementations

Execute cargo build command with zig as the linker

Generate cargo subcommand

Trait Implementations

Append to Command so it can instantiate Self. Read more

Append to Command so it can update self. Read more

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

👎 Deprecated since 3.1.0:

Replaced with `CommandFactory::command

Deprecated, replaced with CommandFactory::command

👎 Deprecated since 3.1.0:

Replaced with `CommandFactory::command_for_update

Deprecated, replaced with CommandFactory::command_for_update

Build an Command that can instantiate Self. Read more

Build an Command that can update self. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Instantiate Self from ArgMatches, parsing the arguments as needed. Read more

Assign values from ArgMatches to self.

Parse from std::env::args_os(), exit on error

Parse from std::env::args_os(), return Err on error.

Parse from iterator, exit on error

Parse from iterator, return Err on error.

Update from iterator, exit on error

Update from iterator, return Err on error.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.