aboutsummaryrefslogtreecommitdiffhomepage
path: root/Cargo.toml
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-02-22 12:05:17 +0900
committernsfisis <nsfisis@gmail.com>2026-02-22 12:05:17 +0900
commit92fdff257d2c64f94600ba70bf17e429d46474b2 (patch)
treed5262aaa71f54f4445e88459468d64262c0a4dee /Cargo.toml
parent8071553d6c706cffda6fdb4391b561329e949014 (diff)
downloadphp-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 'Cargo.toml')
-rw-r--r--Cargo.toml1
1 files changed, 1 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index d197d11..9359601 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -10,6 +10,7 @@ edition = "2024"
mozart-constraint = { path = "crates/mozart-constraint" }
mozart-core = { path = "crates/mozart-core" }
mozart-archiver = { path = "crates/mozart-archiver" }
+mozart-metadata-minifier = { path = "crates/mozart-metadata-minifier" }
mozart-registry = { path = "crates/mozart-registry" }
mozart-autoload = { path = "crates/mozart-autoload" }
anyhow = "1.0.102"