Struct cli::cargo_manifest::CargoPackage [−][src]
pub struct CargoPackage<Metadata = Value> {Show 24 fields
pub name: String,
pub edition: Edition,
pub version: String,
pub build: Option<Value>,
pub workspace: Option<String>,
pub authors: Vec<String, Global>,
pub links: Option<String>,
pub description: Option<String>,
pub homepage: Option<String>,
pub documentation: Option<String>,
pub readme: Option<String>,
pub keywords: Vec<String, Global>,
pub categories: Vec<String, Global>,
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
name: StringCareful: some names are uppercase
edition: Editionversion: Stringe.g. “1.9.0”
build: Option<Value>workspace: Option<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: Option<String>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, Global>categories: Vec<String, Global>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>Trait Implementations
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<Package<Metadata>, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<Package<Metadata>, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations
impl<Metadata> RefUnwindSafe for Package<Metadata> where
Metadata: RefUnwindSafe,
impl<Metadata> UnwindSafe for Package<Metadata> where
Metadata: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more
