diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-02-21 20:27:49 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-02-21 20:27:49 +0900 |
| commit | 8949dfcab0bd81dd475db4cdfe9a3da43d33a5b7 (patch) | |
| tree | 12ef4467b99babf40b2b4f4a671c34a1f07f3c52 /Cargo.lock | |
| parent | 28924141921856e12d77b5005e0d2567c8b17deb (diff) | |
| download | php-mozart-8949dfcab0bd81dd475db4cdfe9a3da43d33a5b7.tar.gz php-mozart-8949dfcab0bd81dd475db4cdfe9a3da43d33a5b7.tar.zst php-mozart-8949dfcab0bd81dd475db4cdfe9a3da43d33a5b7.zip | |
feat(archive): implement command to create distributable archives
Add archive command supporting zip, tar, tar.gz, and tar.bz2 formats
with .gitattributes export-ignore filtering, composer.json archive.exclude
patterns, remote package archiving via Packagist, and self-exclusion to
prevent archives from including themselves.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 26 |
1 files changed, 26 insertions, 0 deletions
@@ -150,6 +150,25 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33" [[package]] +name = "bzip2" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "49ecfb22d906f800d4fe833b6282cf4dc1c298f5057ca0b5445e5c209735ca47" +dependencies = [ + "bzip2-sys", +] + +[[package]] +name = "bzip2-sys" +version = "0.1.13+1.0.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "225bff33b2141874fe80d71e07d6eec4f85c5c216453dd96388240f96e1acc14" +dependencies = [ + "cc", + "pkg-config", +] + +[[package]] name = "cc" version = "1.2.55" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -958,6 +977,7 @@ name = "mozart" version = "0.1.0" dependencies = [ "anyhow", + "bzip2", "clap", "colored", "dialoguer", @@ -1036,6 +1056,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" [[package]] +name = "pkg-config" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" + +[[package]] name = "potential_utf" version = "0.1.4" source = "registry+https://github.com/rust-lang/crates.io-index" |
