I currently use cargo ws to publish my crates, but path dependencies in the packages' Cargo.toml don't update.
For instance, while releasing preleases for jsaw, the inter-crate references don't update; I need to do it manually, making the tags not match up with the published versions.
In particular, I use package renaming for easier usage within the repo and --force * all packages to overcome Cargo.toml changes--are either of those breaking cargo ws? or is inter-crate path dependency updating not supported yet?
I currently use
cargo wsto publish my crates, but path dependencies in the packages'Cargo.tomldon't update.For instance, while releasing preleases for jsaw, the inter-crate references don't update; I need to do it manually, making the tags not match up with the published versions.
In particular, I use package renaming for easier usage within the repo and
--force *all packages to overcomeCargo.tomlchanges--are either of those breakingcargo ws? or is inter-crate path dependency updating not supported yet?