From 8949dfcab0bd81dd475db4cdfe9a3da43d33a5b7 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sat, 21 Feb 2026 20:27:49 +0900 Subject: 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 --- crates/mozart/src/lib.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'crates/mozart/src/lib.rs') diff --git a/crates/mozart/src/lib.rs b/crates/mozart/src/lib.rs index 2451a4a..d28ff9c 100644 --- a/crates/mozart/src/lib.rs +++ b/crates/mozart/src/lib.rs @@ -1,3 +1,4 @@ +pub mod archiver; pub mod autoload; pub mod cache; pub mod commands; -- cgit v1.3.1