Struct cargo_pack::PackConfig[][src]

pub struct PackConfig {
    pub files: Option<Vec<String>>,
    pub default_packers: Option<Vec<String>>,
}

Rust side of configurations in Cargo.toml

Cargo.toml will look like

[package.metadata.pack]
default-packers = ["docker"]
files = ["README.md"]

Fields

files to pack into other than binaries

reserved for future usage.

Trait Implementations

impl Debug for PackConfig
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for PackConfig

impl Sync for PackConfig