File tree 1 file changed +11
-5
lines changed
1 file changed +11
-5
lines changed Original file line number Diff line number Diff line change @@ -73,18 +73,24 @@ pub enum ResolveVersion {
73
73
V1 ,
74
74
/// A more compact format, more amenable to avoiding source-control merge
75
75
/// conflicts. The `dependencies` arrays are compressed and checksums are
76
- /// listed inline. Introduced in 2019 in version 1.38. New lockfiles use
77
- /// V2 by default from 1.41 to 1.52.
76
+ /// listed inline.
77
+ ///
78
+ /// * Introduced in 2019 in version 1.38.
79
+ /// * New lockfiles use V2 by default from 1.41 to 1.52.
78
80
V2 ,
79
81
/// A format that explicitly lists a `version` at the top of the file as
80
82
/// well as changing how git dependencies are encoded. Dependencies with
81
83
/// `branch = "master"` are no longer encoded the same way as those without
82
- /// branch specifiers. Introduced in 2020 in version 1.47. New lockfiles use
83
- /// V3 by default staring in 1.53.
84
+ /// branch specifiers.
85
+ ///
86
+ /// * Introduced in 2020 in version 1.47.
87
+ /// * New lockfiles use V3 by default starting in 1.53.
84
88
V3 ,
85
89
/// SourceId URL serialization is aware of URL encoding. For example,
86
90
/// `?branch=foo bar` is now encoded as `?branch=foo+bar` and can be decoded
87
- /// back and forth correctly. Introduced in 2024 in version 1.77.
91
+ /// back and forth correctly.
92
+ ///
93
+ /// * Introduced in 2024 in version 1.77.
88
94
V4 ,
89
95
/// Unstable. Will collect a certain amount of changes and then go.
90
96
///
You can’t perform that action at this time.
0 commit comments