You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Problem
Say you want to test a crate against a specific version of one of its dependencies. One way to do that is to run cargo update -p $dep --precise $version. The problem is that when you do that without a pre-existing Cargo.lock (like, running that as the first command in a travis script), all the arguments are ignored, and you get the same Cargo.lock as you would plain cargo update, so without $dep at the wanted $version.