What's the best way to update a nimble package?
For example, I just updated a package of my own, and pushed it to Git, and I
have another project that uses this packages and need the new version. I'm not
using `nimble develop` mostly because I no longer need it (this is a small
correction/addition and I do not need such close interaction).
For now, I'm doing:
rm -rf
~/.nimble/pkgs2/emailparser-0.1.0-aa6541da8aca684d6843c704e7ac6777c79dff75
nimble install -d
Run
The package does not have any version released yet, I'm tracking the latest
HEAD (automatically)
Thank you.