You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
chore(release): correct publish order — derive after compile-check (#102)
The publish order had hyperdb-api-derive at position 3, before
hyperdb-compile-check. But hyperdb-api-derive has an optional dep
`hyperdb-compile-check = "=0.4.0"`, and cargo publish resolves optional
deps against the live crates.io index during packaging — so it failed with
`no matching package named hyperdb-compile-check`.
Derived the correct topological order from the version-pinned sibling edges
(path-only deps impose no ordering and are not registry-checked):
core → salesforce
api → core
compile-check → api
derive → compile-check
mcp → api
=> salesforce → core → api → compile-check → derive → mcp → bootstrap → sea-query
Moves `publish hyperdb-api-derive` to after the hyperdb-compile-check block.
This is a pure reordering; no Cargo.toml changes. The 'already exists' guard
skips the already-published salesforce + core crates on re-run.
0 commit comments