hero_rpc/hero_blueprint: absolute /Volumes/T7 paths + post-refactor breakage on development #152
Labels
No labels
prio_critical
prio_low
type_bug
type_contact
type_issue
type_lead
type_question
type_story
type_task
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
lhumina_code/hero_blueprint#152
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Three independent upstream issues found while pulling hero_rpc as a git dep from hero_os.
1. Absolute /Volumes/T7 paths in [patch] block (both branches)
Cargo.tomlships a[patch."hero_lib.git"]block pinning every herolib_* crate to/Volumes/T7/hero/code/hero_lib/.... That path only exists on one developer's machine; everywhere else cargo fails to resolve the workspace. Same pattern ondevelopment(3 entries) andrefactor/hero-lib-base(6 entries).Fix: PR #151 drops the block on
refactor/hero-lib-base(workspace already lists the same crates as git deps).The same bug is still present on
development—Cargo.toml:50plus the[patch]block at lines 73-76.2. Broken derive crate on development
Commit
84feba6("refactor: move hero_lifecycle + oschema to hero_lib, drop line transport") deletedcrates/derive/src/openrpc_client.rsandcrates/derive/src/openrpc_proxy.rsbutcrates/derive/src/lib.rsstill has:Result:
cargo check --workspaceondevelopmentfails immediately with E0583 (file not found for module). Either restore the files or scrub the module declarations + dispatcher fns.refactor/hero-lib-basedeletes the wholecrates/derive/directory, which is presumably the intended resolution.3. Dead herolib_web dep
crates/osis/Cargo.tomldeclaresherolib_web.workspace = truebut no source file uses it.herolib_webno longer ships in hero_lib so the dep fails to resolve. Recommend removing it on both branches.Suggested path forward
Merge #151 →
refactor/hero-lib-base→development. Development is currently unbuildable due to (2); refactor/hero-lib-base builds clean once #151 lands.#151
Item 1 (absolute paths) and item 3 (dead herolib_web dep) are addressed by PR #153 against development. PR #151 already landed the same fix on refactor/hero-lib-base.
Item 2 (broken mod openrpc_client/proxy in crates/derive/src/lib.rs on development) is still open — leaving it to whoever owns the migration direction (restore the files vs. scrub the proc macros + dispatchers).