[][src]Struct cargo_manifest::Package

pub struct Package<Metadata = Value> {
    pub name: String,
    pub edition: Edition,
    pub version: String,
    pub build: Option<Value>,
    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: Option<String>,
    pub keywords: Vec<String>,
    pub categories: Vec<String>,
    pub license: Option<String>,
    pub license_file: Option<String>,
    pub repository: Option<String>,
    pub metadata: Option<Metadata>,
    pub autobins: bool,
    pub autoexamples: bool,
    pub autotests: bool,
    pub autobenches: bool,
    pub publish: Publish,
}

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: Editionversion: String

e.g. "1.9.0"

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

e.g. ["Author e@mail", "etc"]

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

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>metadata: Option<Metadata>autobins: boolautoexamples: boolautotests: boolautobenches: boolpublish: Publish

Trait Implementations

impl<Metadata: Clone> Clone for Package<Metadata>[src]

impl<Metadata: Debug> Debug for Package<Metadata>[src]

impl<'de, Metadata> Deserialize<'de> for Package<Metadata> where
    Metadata: Deserialize<'de>, 
[src]

impl<Metadata: PartialEq> PartialEq<Package<Metadata>> for Package<Metadata>[src]

impl<Metadata> Serialize for Package<Metadata> where
    Metadata: Serialize
[src]

impl<Metadata> StructuralPartialEq for Package<Metadata>[src]

Auto Trait Implementations

impl<Metadata> RefUnwindSafe for Package<Metadata> where
    Metadata: RefUnwindSafe

impl<Metadata> Send for Package<Metadata> where
    Metadata: Send

impl<Metadata> Sync for Package<Metadata> where
    Metadata: Sync

impl<Metadata> Unpin for Package<Metadata> where
    Metadata: Unpin

impl<Metadata> UnwindSafe for Package<Metadata> where
    Metadata: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.