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

A version to indicate how a Cargo.lock should be serialized. Currently V2 is the default when creating a new lockfile. If a V1 lockfile already exists, it will stay as V1.

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 starting in 1.41.

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.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

The default way to encode new or updated Cargo.lock files.

It’s important that if a new version of ResolveVersion 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.

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

Restrict a value to a certain interval. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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

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

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

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

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

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

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

Returns the argument unchanged.

Calls U::from(self).

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

Should always be Self

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.