pub struct BuildConfig {
    pub dev_mode: bool,
    pub test_mode: bool,
    pub generate_docs: bool,
    pub generate_abis: bool,
    pub install_dir: Option<PathBuf>,
    pub force_recompilation: bool,
    pub additional_named_addresses: BTreeMap<String, AccountAddress>,
    pub architecture: Option<Architecture>,
    pub fetch_deps_only: bool,
}

Fields

dev_mode: bool

Compile in ‘dev’ mode. The ‘dev-addresses’ and ‘dev-dependencies’ fields will be used if this flag is set. This flag is useful for development of packages that expose named addresses that are not set to a specific value.

test_mode: bool

Compile in ‘test’ mode. The ‘dev-addresses’ and ‘dev-dependencies’ fields will be used along with any code in the ‘tests’ directory.

generate_docs: bool

Generate documentation for packages

generate_abis: bool

Generate ABIs for packages

install_dir: Option<PathBuf>

Installation directory for compiled artifacts. Defaults to current directory.

force_recompilation: bool

Force recompilation of all packages

additional_named_addresses: BTreeMap<String, AccountAddress>

Additional named address mapping. Useful for tools in rust

architecture: Option<Architecture>fetch_deps_only: bool

Only fetch dependency repos to MOVE_HOME

Implementations

Compile the package at path or the containing Move package. Exit process on warning or failure.

Compile the package at path or the containing Move package. Do not exit process on warning or failure.

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, replaced with CommandFactory::command

Deprecated, replaced with CommandFactory::command_for_update

Build a Command that can instantiate Self. Read more

Build a 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

Deserialize this value from the given Serde deserializer. Read more

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

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

Assign values from ArgMatches to self.

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.

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

Serialize this value into the given Serde serializer. Read more

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

Compare self to key and return true if they are equal.

Returns the argument unchanged.

Calls U::from(self).

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

Should always be Self

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.