snafu-upgrade-assistant

Upgrades usages of SNAFU 0.6 to 0.7.

TL;DR

  1. Install the assistant

    cargo install snafu-upgrade-assistant

  2. Run the assistant inside of your Cargo project

    snafu-upgrade-assistant

    This should compile successfully and make no changes to your files.

  3. Update SNAFU from 0.6 to 0.7 in your Cargo.toml

  4. Run the assistant again

  5. Commit changes and run tests

What's going on?

In SNAFU 0.7, generated context selectors now have the Snafu suffix to help de-mystify the generated code. This tool builds your code, looks at the compiler error messages, and applies automated transformations to try to get it building again.

What options exist?

Run the assistant with --help for the complete list of options. Some commonly used ones are:

Is this safe?

The assistant is designed to only change files inside of the current working directory that the Rust compiler reports errors have occurred in. That said, you should always start work with a clean version control state, and it doesn't hurt to have a backup of your directory.