[][src]Struct cargo_metadata::Dependency

pub struct Dependency {
    pub name: String,
    pub source: Option<String>,
    pub req: VersionReq,
    pub kind: DependencyKind,
    pub optional: bool,
    pub uses_default_features: bool,
    pub features: Vec<String>,
    pub target: Option<Platform>,
    pub rename: Option<String>,
    pub registry: Option<String>,
    // some fields omitted
}

A dependency of the main crate

Fields

name: String

Name as given in the Cargo.toml

source: Option<String>

The source of dependency

req: VersionReq

The required version

kind: DependencyKind

The kind of dependency this is

optional: bool

Whether this dependency is required or optional

uses_default_features: bool

Whether the default features in this dependency are used.

features: Vec<String>

The list of features enabled for this dependency.

target: Option<Platform>

The target this dependency is specific to.

Use the Display trait to access the contents.

rename: Option<String>

If the dependency is renamed, this is the new name for the dependency as a string. None if it is not renamed.

registry: Option<String>

The URL of the index of the registry where this dependency is from.

If None, the dependency is from crates.io.

Trait Implementations

impl Clone for Dependency
[src]

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

Performs copy-assignment from source. Read more

impl Debug for Dependency
[src]

impl<'de> Deserialize<'de> for Dependency
[src]

impl Serialize for Dependency
[src]

Auto Trait Implementations

impl Send for Dependency

impl Sync for Dependency

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
    T: From<U>, 
[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> 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> Any for T where
    T: 'static + ?Sized
[src]

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