Struct cargo_toml::Package
source · [−]pub struct Package<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>,
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 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: String
Careful: some names are uppercase
edition: Edition
version: String
e.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>
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: bool
autoexamples: bool
autotests: bool
autobenches: bool
publish: Publish
resolver: Option<Resolver>
“2” is the only useful value
metadata: Option<Metadata>
Trait Implementations
sourceimpl<'de, Metadata> Deserialize<'de> for Package<Metadata> where
Metadata: Deserialize<'de>,
impl<'de, Metadata> Deserialize<'de> for Package<Metadata> where
Metadata: Deserialize<'de>,
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl<Metadata> StructuralPartialEq for Package<Metadata>
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more