[][src]Struct cargo_toml::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: bool,
}

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: bool

Trait Implementations

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

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

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

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

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

Auto Trait Implementations

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

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

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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