Right now, if a WIT package has a local reference to another package (currently only through overrides), it is not reflected in the wkg.lock:
# This file is automatically generated.
# It is not intended for manual editing.
version = 1
packages = []
Should they instead have a reference to self similar to Cargo.lock local dependencies?
https://github.com/mkatychev/workspace-test
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 4
[[package]]
name = "bar"
version = "0.6.1"
[[package]]
name = "foo"
version = "0.6.1"
dependencies = [
"bar",
]
Last updated: Jul 29 2026 at 05:03 UTC