Struct cargo_metadata::Dependency [−][src]
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][+]
impl Debug for Dependency
[src][+]
impl<'de> Deserialize<'de> for Dependency
[src][+]
impl Serialize for Dependency
[src][+]
Auto Trait Implementations
impl RefUnwindSafe for Dependency
impl Send for Dependency
impl Sync for Dependency
impl Unpin for Dependency
impl UnwindSafe for Dependency
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,