pub struct Dependency {
    pub name: String,
    pub features: Option<Vec<String>>,
    pub available_features: BTreeMap<String, Vec<String>>,
    /* private fields */
}
Expand description

A dependency handled by Cargo

Fields§

§name: String

The name of the dependency (as it is set in its Cargo.toml and known to crates.io)

§features: Option<Vec<String>>

List of features to add (or None to keep features unchanged).

§available_features: BTreeMap<String, Vec<String>>

Features that are exposed by the dependency

Implementations§

source§

impl Dependency

source

pub fn new(name: &str) -> Dependency

Create a new dependency with a name

source

pub fn set_version(self, version: &str) -> Dependency

Set dependency to a given version

source

pub fn clear_version(self) -> Dependency

Remove the existing version requirement

source

pub fn set_available_features( self, available_features: BTreeMap<String, Vec<String>> ) -> Dependency

Set the available features of the dependency to a given vec

source

pub fn set_git( self, repo: &str, branch: Option<String>, tag: Option<String>, rev: Option<String> ) -> Dependency

Set dependency to a given repository

source

pub fn set_path(self, path: PathBuf) -> Dependency

Set dependency to a given path

Panic

Panics if the path is relative

source

pub fn set_optional(self, opt: Option<bool>) -> Dependency

Set whether the dependency is optional

source

pub fn set_features(self, features: Option<Vec<String>>) -> Dependency

Set features as an array of string (does some basic parsing)

source

pub fn set_default_features(self, default_features: Option<bool>) -> Dependency

Set the value of default-features for the dependency

source

pub fn set_rename(self, rename: &str) -> Dependency

Set the alias for the dependency

source

pub fn set_registry(self, registry: &str) -> Dependency

Set the value of registry for the dependency

source

pub fn version(&self) -> Option<&str>

Get version of dependency

source

pub fn path(&self) -> Option<&Path>

Get the path of the dependency

source

pub fn registry(&self) -> Option<&str>

Get registry of the dependency

source

pub fn git(&self) -> Option<&str>

Get the git repo of the dependency

source

pub fn rename(&self) -> Option<&str>

Get the alias for the dependency (if any)

source

pub fn default_features(&self) -> Option<bool>

Whether default features are activated

source§

impl Dependency

source

pub fn from_toml(crate_root: &Path, key: &str, item: &Item) -> Option<Self>

Create a dependency from a TOML table entry

source

pub fn toml_key(&self) -> &str

Get the dependency name as defined in the manifest, that is, either the alias (rename field if Some), or the official package name (name field).

source

pub fn to_toml(&self, crate_root: &Path) -> Item

Convert dependency to TOML

Returns a tuple with the dependency’s name and either the version as a String or the path/git repository as an InlineTable. (If the dependency is set as optional or default-features is set to false, an InlineTable is returned in any case.)

Panic

Panics if the path is relative

source

pub fn update_toml(&self, crate_root: &Path, item: &mut Item)

Modify existing entry to match this dependency

Trait Implementations§

source§

impl Clone for Dependency

source§

fn clone(&self) -> Dependency

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Dependency

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Dependency

source§

fn default() -> Dependency

Returns the “default value” for a type. Read more
source§

impl Hash for Dependency

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl Ord for Dependency

source§

fn cmp(&self, other: &Dependency) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Selfwhere Self: Sized + PartialOrd<Self>,

Restrict a value to a certain interval. Read more
source§

impl PartialEq<Dependency> for Dependency

source§

fn eq(&self, other: &Dependency) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd<Dependency> for Dependency

source§

fn partial_cmp(&self, other: &Dependency) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

fn lt(&self, other: &Rhs) -> bool

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

fn le(&self, other: &Rhs) -> bool

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

fn gt(&self, other: &Rhs) -> bool

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

fn ge(&self, other: &Rhs) -> bool

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl Eq for Dependency

source§

impl StructuralEq for Dependency

source§

impl StructuralPartialEq for Dependency

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Pointable for T

§

const ALIGN: usize = mem::align_of::<T>()

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.