cargo-edit-toml 0.0.2

A small tool that opens the current project's `Cargo.toml` manifest file using the application provided by either the `$EDITOR` environment variable or the `--editor` argument.
1
2
3
4
5
6
7
8
9
10
# cargo-edit-toml
A small tool that opens the current project's `Cargo.toml` manifest file using the application provided by either the `$EDITOR` environment variable or the `--editor` argument.

## Tips
Add the following to your `~/.cargo/config.toml`:
```toml
[alias]
e = "edit-toml"
```
Then you can invoke it in any project using `cargo e`.