diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-02-22 12:05:17 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-02-22 12:05:17 +0900 |
| commit | 92fdff257d2c64f94600ba70bf17e429d46474b2 (patch) | |
| tree | d5262aaa71f54f4445e88459468d64262c0a4dee /crates/mozart-metadata-minifier/Cargo.toml | |
| parent | 8071553d6c706cffda6fdb4391b561329e949014 (diff) | |
| download | php-mozart-92fdff257d2c64f94600ba70bf17e429d46474b2.tar.gz php-mozart-92fdff257d2c64f94600ba70bf17e429d46474b2.tar.zst php-mozart-92fdff257d2c64f94600ba70bf17e429d46474b2.zip | |
feat(metadata-minifier): add mozart-metadata-minifier crate
Port composer/metadata-minifier to Rust as an independent workspace
crate. Implements expand() and minify() for Packagist's delta-encoded
version metadata. Update mozart-registry to use the new crate for
transparent minified response handling, and add __unset sentinel
support to PackagistVersion deserialization.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Diffstat (limited to 'crates/mozart-metadata-minifier/Cargo.toml')
| -rw-r--r-- | crates/mozart-metadata-minifier/Cargo.toml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/crates/mozart-metadata-minifier/Cargo.toml b/crates/mozart-metadata-minifier/Cargo.toml new file mode 100644 index 0000000..49534e2 --- /dev/null +++ b/crates/mozart-metadata-minifier/Cargo.toml @@ -0,0 +1,7 @@ +[package] +name = "mozart-metadata-minifier" +version.workspace = true +edition.workspace = true + +[dependencies] +serde_json.workspace = true |
