Open
Description
Problem
If I'm explicitly setting the version requirement, there is likely a reason for it, like MSRV. I shouldn't have to then run cargo update -p clap --precise 4.1.3
after running cargo add
.
Proposed Solution
When the version requirement is precise, lock to it
Notes
I implemented support for this in cargo-edit's cargo upgrade
, see killercup/cargo-edit#795