pub enum ResolveVersion {
    V1,
    V2,
    V3,
}
Expand description

A version to indicate how a Cargo.lock should be serialized.

When creating a new lockfile, the version with #[default] is used. If an old version of lockfile already exists, it will stay as-is.

It’s important that if a new version is added that this is not updated until at least the support for the version is in the stable release of Rust.

This resolve version will be used for all new lock files, for example those generated by cargo update (update everything) or building after a cargo new (where no lock file previously existed). This is also used for updated lock files such as when a dependency is added or when a version requirement changes. In this situation Cargo’s updating the lock file anyway so it takes the opportunity to bump the lock file version forward.

It’s theorized that we can add more here over time to track larger changes to the Cargo.lock format, but we’ve yet to see how that strategy pans out.

Variants§

§

V1

Historical baseline for when this abstraction was added.

§

V2

A more compact format, more amenable to avoiding source-control merge conflicts. The dependencies arrays are compressed and checksums are listed inline. Introduced in 2019 in version 1.38. New lockfiles use V2 by default from 1.41 to 1.52.

§

V3

A format that explicitly lists a version at the top of the file as well as changing how git dependencies are encoded. Dependencies with branch = "master" are no longer encoded the same way as those without branch specifiers. Introduced in 2020 in version 1.47. New lockfiles use V3 by default staring in 1.53.

Trait Implementations§

source§

impl Clone for ResolveVersion

source§

fn clone(&self) -> ResolveVersion

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 ResolveVersion

source§

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

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

impl Default for ResolveVersion

source§

fn default() -> ResolveVersion

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

impl Ord for ResolveVersion

source§

fn cmp(&self, other: &ResolveVersion) -> 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<ResolveVersion> for ResolveVersion

source§

fn eq(&self, other: &ResolveVersion) -> 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<ResolveVersion> for ResolveVersion

source§

fn partial_cmp(&self, other: &ResolveVersion) -> 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 Copy for ResolveVersion

source§

impl Eq for ResolveVersion

source§

impl StructuralEq for ResolveVersion

source§

impl StructuralPartialEq for ResolveVersion

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,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

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

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

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.

source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
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.
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.
source§

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

Performs the conversion.