fix: crates.io publish-blocking gaps in homecore-automation, homecore-hap - #1496
Open
ruvnet wants to merge 1 commit into
Open
fix: crates.io publish-blocking gaps in homecore-automation, homecore-hap#1496ruvnet wants to merge 1 commit into
ruvnet wants to merge 1 commit into
Conversation
…-hap homecore-automation's and homecore-hap's path dependency on homecore had no version requirement -- crates.io rejects "all dependencies must have a version requirement specified when publishing". Pinned both to homecore = "0.1.0-alpha.0", the version just published. Also fixed homecore-hap's repository field, which pointed at github.com/ruvnet/wifi-densepose (a 404) instead of the actual github.com/ruvnet/RuView -- inconsistent with every other homecore-* crate's Cargo.toml. Found while publishing the full homecore-* batch to crates.io (homecore, -api, -automation, -assist, -hap, -migrate, -plugins, -recorder, -server -- all 9, v0.1.0-alpha.0). Both crates verified via cargo publish --dry-run before and after.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
homecore-automationandhomecore-hapboth path-depend onhomecorewith no version requirement — crates.io rejects "all dependencies must have a version requirement specified when publishing". Pinned both tohomecore = "0.1.0-alpha.0".homecore-hap'srepositoryfield pointed atgithub.com/ruvnet/wifi-densepose(404) instead ofgithub.com/ruvnet/RuView, inconsistent with every otherhomecore-*crate.Found while publishing the full
homecore-*batch to crates.io (all 9:homecore,-api,-automation,-assist,-hap,-migrate,-plugins,-recorder,-server, allv0.1.0-alpha.0).Test plan
cargo publish -p homecore-automation --dry-run/cargo publish -p homecore-hap --dry-run— both pass (were failing before)