pub struct Config {
Show 38 fields pub manifest_dir: PathBuf, pub deb_output_path: Option<String>, pub target: Option<String>, pub target_dir: PathBuf, pub name: String, pub deb_name: String, pub deb_version: String, pub license: Option<String>, pub license_file: Option<PathBuf>, pub license_file_skip_lines: usize, pub copyright: String, pub changelog: Option<String>, pub homepage: Option<String>, pub documentation: Option<String>, pub repository: Option<String>, pub description: String, pub extended_description: Option<String>, pub maintainer: String, pub depends: String, pub pre_depends: Option<String>, pub recommends: Option<String>, pub suggests: Option<String>, pub enhances: Option<String>, pub section: Option<String>, pub priority: String, pub conflicts: Option<String>, pub breaks: Option<String>, pub replaces: Option<String>, pub provides: Option<String>, pub architecture: String, pub conf_files: Option<String>, pub triggers_file: Option<PathBuf>, pub maintainer_scripts: Option<PathBuf>, pub features: Vec<String>, pub default_features: bool, pub debug_enabled: bool, pub separate_debug_symbols: bool, pub preserve_symlinks: bool, /* private fields */
}
Expand description

Cargo deb configuration read from the manifest and cargo metadata

Fields

manifest_dir: PathBuf

Root directory where Cargo.toml is located. It’s a subdirectory in workspaces.

deb_output_path: Option<String>

User-configured output path for *.deb

target: Option<String>

Triple. None means current machine architecture.

target_dir: PathBuf

CARGO_TARGET_DIR

name: String

The name of the project to build

deb_name: String

The name to give the Debian package; usually the same as the Cargo project name

deb_version: String

The version to give the Debian package; usually the same as the Cargo version

license: Option<String>

The software license of the project (SPDX format).

license_file: Option<PathBuf>

The location of the license file

license_file_skip_lines: usize

number of lines to skip when reading license_file

copyright: String

The copyright of the project (Debian’s copyright file contents).

changelog: Option<String>homepage: Option<String>

The homepage URL of the project.

documentation: Option<String>

Documentation URL from Cargo.toml. Fallback if homepage is missing.

repository: Option<String>

The URL of the software repository.

description: String

A short description of the project.

extended_description: Option<String>

An extended description of the project.

maintainer: String

The maintainer of the Debian package. In Debian control file Maintainer field format.

depends: String

The Debian dependencies required to run the project.

pre_depends: Option<String>

The Debian pre-dependencies.

recommends: Option<String>

The Debian recommended dependencies.

suggests: Option<String>

The Debian suggested dependencies.

enhances: Option<String>

The list of packages this package can enhance.

section: Option<String>

The Debian software category to which the package belongs.

priority: String

The Debian priority of the project. Typically ‘optional’.

conflicts: Option<String>

Conflicts Debian control field.

See PackageTransition.

breaks: Option<String>

Breaks Debian control field.

See PackageTransition.

replaces: Option<String>

Replaces Debian control field.

See PackageTransition.

provides: Option<String>

Provides Debian control field.

See PackageTransition.

architecture: String

The Debian architecture of the target system.

conf_files: Option<String>

A list of configuration files installed by the package.

triggers_file: Option<PathBuf>

The location of the triggers file

maintainer_scripts: Option<PathBuf>

The path where possible maintainer scripts live

features: Vec<String>

List of Cargo features to use during build

default_features: booldebug_enabled: bool

Should the binary be stripped from debug symbols?

separate_debug_symbols: bool

Should the debug symbols be moved to a separate file included in the package? (implies strip:true)

preserve_symlinks: bool

Should symlinks be preserved in the assets

Implementations

Makes a new config from Cargo.toml in the current working directory.

None target means the host machine’s architecture.

Trait Implementations

Formats the value using the given formatter. 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

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 alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. 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.