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

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

Fields (Non-exhaustive)

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
name: String

Careful: some names are uppercase

edition: Editionrust_version: Option<String>

MSRV 1.x (beware: does not require semver formatting)

version: String

e.g. “1.9.0”

build: Option<OptionalFile>workspace: Option<String>authors: Vec<String>

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

links: Option<String>description: Option<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<String>documentation: Option<String>readme: OptionalFile

This points to a file under the package root (relative to this Cargo.toml). implied if README.md, README.txt or README exists.

keywords: Vec<String>categories: 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<String>

e.g. “MIT”

license_file: Option<String>repository: Option<String>default_run: Option<String>

The default binary to run by cargo run.

autobins: boolautoexamples: boolautotests: boolautobenches: boolpublish: Publishresolver: Option<Resolver>

“2” is the only useful value

metadata: Option<Metadata>

Implementations

Prefer creating it by parsing Manifest instead

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.