I have just converted my project from a single crate to two crates.
The project, GitHub - phillord/horned-owl, now has too crates -- horned-owl which is a library and horned-bin which are some command line utilities. -bin depends on -owl. I have been using cargo-release to manage releases.
I have managed the interdependency by having a path
version in the horned-bin point to horned-owl. That seems sensible, because I want the binary crate to depending on the development version of the library. But, cargo-release won't let me release it like this because the release version of -bin needs to depend on the a published version of -owl.
Is the only solution to change the dependency in -owl to the release version in the release commit and then back again for the next iteration? Or am I just doing it all wrong?