pub struct Package<Metadata = Value> {
Show 27 fields pub name: String, pub edition: Option<MaybeInherited<Edition>>, pub version: MaybeInherited<String>, pub build: Option<Value>, pub workspace: Option<String>, pub authors: Option<MaybeInherited<Vec<String>>>, pub links: Option<String>, pub description: Option<MaybeInherited<String>>, pub homepage: Option<MaybeInherited<String>>, pub documentation: Option<MaybeInherited<String>>, pub readme: Option<MaybeInherited<StringOrBool>>, pub keywords: Option<MaybeInherited<Vec<String>>>, pub categories: Option<MaybeInherited<Vec<String>>>, pub license: Option<MaybeInherited<String>>, pub license_file: Option<MaybeInherited<String>>, pub repository: Option<String>, pub metadata: Option<Metadata>, pub rust_version: Option<MaybeInherited<String>>, pub exclude: Option<MaybeInherited<Vec<String>>>, pub include: Option<MaybeInherited<Vec<String>>>, pub default_run: Option<String>, pub autobins: bool, pub autoexamples: bool, pub autotests: bool, pub autobenches: bool, pub publish: Option<MaybeInherited<Publish>>, pub resolver: Option<Resolver>,
}
Expand description

You can replace Metadata type with your own to parse into something more useful than a generic toml Value

Fields

name: String

Careful: some names are uppercase

edition: Option<MaybeInherited<Edition>>version: MaybeInherited<String>

e.g. “1.9.0”

build: Option<Value>workspace: Option<String>authors: Option<MaybeInherited<Vec<String>>>

e.g. [“Author e@mail”, “etc”]

links: Option<String>description: Option<MaybeInherited<String>>

A short blurb about the package. This is not rendered in any format when uploaded to crates.io (aka this is not markdown).

homepage: Option<MaybeInherited<String>>documentation: Option<MaybeInherited<String>>readme: Option<MaybeInherited<StringOrBool>>

This points to a file under the package root (relative to this Cargo.toml).

keywords: Option<MaybeInherited<Vec<String>>>categories: Option<MaybeInherited<Vec<String>>>

This is a list of up to five categories where this crate would fit. e.g. [“command-line-utilities”, “development-tools::cargo-plugins”]

license: Option<MaybeInherited<String>>

e.g. “MIT”

license_file: Option<MaybeInherited<String>>repository: Option<String>metadata: Option<Metadata>rust_version: Option<MaybeInherited<String>>

e.g. “1.63.0”

exclude: Option<MaybeInherited<Vec<String>>>include: Option<MaybeInherited<Vec<String>>>default_run: Option<String>

The default binary to run by cargo run.

autobins: boolautoexamples: boolautotests: boolautobenches: boolpublish: Option<MaybeInherited<Publish>>resolver: Option<Resolver>

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Deserialize this value from the given Serde deserializer. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. 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

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
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.