[][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>,
    pub path: Option<PathBuf>,
    // 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.

path: Option<PathBuf>

The file system path for a local path dependency.

Only produced on cargo 1.51+

Trait Implementations

impl Clone for Dependency[src]

impl Debug for Dependency[src]

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

impl Serialize for Dependency[src]

Auto Trait Implementations

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.