chore(manifest): use TOML-native namespaced dep for mcpplibs.cmdline#156
Merged
Conversation
… dep Use the TOML-native namespaced form `mcpplibs.cmdline = "0.0.1"` (the dotted subtable [dependencies.mcpplibs] cmdline=...) instead of the legacy quoted "mcpplibs.cmdline" key. mcpp's manifest parser resolves both to the same identity (mcpplibs, cmdline); the pre-0.0.6 bootstrap-compat reason for the quotes is moot now that the self-host build bootstraps via a current `xlings install mcpp` (well past 0.0.6). Verified: a clean self-host `mcpp build` with the published bootstrap (0.0.56) resolves `mcpplibs.cmdline v0.0.1` from the unquoted form and links green.
Sunrisepeak
added a commit
that referenced
this pull request
Jun 23, 2026
Ships the WS3/WS5/WS6 + manifest work merged for this cycle: - offline-first miss-triggered index refresh + `mcpp index status` (#155) - first-init timestamped --verbose timing logs (#153) - install.sh linux-aarch64 + GitHub→GitCode(CN) mirror fallback (#154) - TOML-native namespaced self-host dep (#156) Bumps mcpp.toml + MCPP_VERSION together (test 01 ties --version to the manifest) and adds the 0.0.61 CHANGELOG entry. The .xlings.json bootstrap pin stays at 0.0.60 until 0.0.61 is published+mirrored+indexed (CI bootstraps from the published version), then bumps in a follow-up.
Sunrisepeak
added a commit
that referenced
this pull request
Jun 23, 2026
Ships the WS3/WS5/WS6 + manifest work merged for this cycle: - offline-first miss-triggered index refresh + `mcpp index status` (#155) - first-init timestamped --verbose timing logs (#153) - install.sh linux-aarch64 + GitHub→GitCode(CN) mirror fallback (#154) - TOML-native namespaced self-host dep (#156) Bumps mcpp.toml + MCPP_VERSION together (test 01 ties --version to the manifest) and adds the 0.0.61 CHANGELOG entry. The .xlings.json bootstrap pin stays at 0.0.60 until 0.0.61 is published+mirrored+indexed (CI bootstraps from the published version), then bumps in a follow-up.
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.
Drop the legacy quoted dotted key in the self-host manifest:
mcpplibs.cmdline = "0.0.1"under[dependencies]is the TOML-native dotted subtable[dependencies.mcpplibs] cmdline = "0.0.1", which mcpp's manifest parser resolves to the same identity(mcpplibs, cmdline)as the quoted legacy form (form (2) vs form (3) insrc/manifest.cppm).The quotes existed only so a pre-0.0.6 bootstrap mcpp (which couldn't parse
[dependencies.<ns>]subtables) could still read this file during the self-host release build. That constraint is moot: the self-host build now bootstraps viaxlings install mcpp(latest published, well past 0.0.6).Verified: a clean self-host
mcpp buildwith the published bootstrap (0.0.56) resolvesmcpplibs.cmdline v0.0.1from the unquoted form and links green.