Crates.io | cargo-dist-schema |
lib.rs | cargo-dist-schema |
version | 0.25.1 |
source | src |
created_at | 2023-01-23 20:44:38.751854 |
updated_at | 2024-11-01 18:45:00.091673 |
description | Schema information for cargo-dist's dist-manifest.json |
homepage | https://opensource.axo.dev/cargo-dist/ |
repository | https://github.com/axodotdev/cargo-dist |
max_upload_size | |
id | 766188 |
size | 57,250 |
Schema reporting/parsing for dist's dist-manifest.json
, which is the result you get from --output-format=json
when running cargo dist build
or cargo dist plan
.
This can be used to parse the machine-readable manifests produced by dist. Ideally it should be forward and backward compatible with newer and older versions of the manifests.
This compatibility is fairly important as one tool may need to look at releases spread over years. Also dist is self-hosting from previous releases, so when looking at dist's own releases there will always be (at least) an off-by-one in the manifest and the tool that manifest describes.
There are currently 3 epochs to dist-manifest.json:
Epoch 1 was initial experimentation, and is no longer supported.
Epoch 2 made some breaking changes once we had a better sense for the constraints of the design. Most notable artifacts were pull into a top-level Object that Releases simply refer to by key. This makes it possible for different releases to share an Artifact (such as debuginfo/symbol files for shared binaries). The version gap between Epoch 1 and 2 is a fuzzy zone with inadvisable-to-use prerelease copies of dist. We believe 0.0.3-prerelease9 is where things got solidified and should be the same as 0.0.3 proper.
Epoch 3 has the exact same format but we removed versions from artifact id names, changing the format of URLs. This largely only affects dist's ability to fetch itself, and created a single transitory release (0.0.6-prerelease.7) which is unable to fetch itself, because it was built with an epoch2 version (0.0.5). This version is intentionally not published on crates.io. The CI was manually updated to use the right URLs to bootstrap 0.0.6-prerelease.8, which is fully in epoch3.
dist's CI is self-hosting using previous releases of itself. Ostensibly there's a coherent bootstrapping chain of releases, but around the Epoch boundary things get a bit wonky. You can always build from source with just cargo build
so it's not exactly a big deal.
But for my own edification:
The awkward thing is that if we want the release for dist to include a feature new to itself, we need intermediate prereleases for the feature to "catch up". As such stable releases are basically never built from the previous stable release.https://github.com/axodotdev/cargo-dist/commit/8a417f239ef8f8e3ab66c46cf7c3d26afaba1c87