Currently a proof of concept for being able to switch the new resolver on/off via a cmd line call during a CI build job.
run cargo modify
in a folder that contains a Cargo.toml
:
```sh
cargo modify new-resolver
cargo modify new-resolver --v2=true
cargo modify new-resolver --v2=false ```
Caution this will reorder your Cargo.toml
arbitrarily. Primary use-case is to do on-the-fly changes on a CI
later we could use this to allow arbitrary edits on a Cargo.toml
, ideas welcome.