Closed billy1624 closed 1 year ago
Caret requirements are an alternative syntax for the default strategy, ^1.2.3 is exactly equivalent to 1.2.3. https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#caret-requirements
Caret requirements are an alternative syntax for the default strategy, ^1.2.3 is exactly equivalent to 1.2.3.
^1.2.3
1.2.3
https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#caret-requirements
To make the dependency specification clear and concise, I'd like to define it all in the form of x.y.z.
x.y.z
version = "^x.y.z"
version = "x.y.z"
PR Info
To make the dependency specification clear and concise, I'd like to define it all in the form of
x.y.z
.Changes
version = "^x.y.z"
intoversion = "x.y.z"