From 3f80f3acd90c9782420cc0d33fcf77035e522b15 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Wed, 11 Feb 2026 10:15:55 +0900 Subject: enable workspace --- src/commands/archive.rs | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 src/commands/archive.rs (limited to 'src/commands/archive.rs') diff --git a/src/commands/archive.rs b/src/commands/archive.rs deleted file mode 100644 index 1fbef6c..0000000 --- a/src/commands/archive.rs +++ /dev/null @@ -1,30 +0,0 @@ -use clap::Args; - -#[derive(Args)] -pub struct ArchiveArgs { - /// The package name - pub package: Option, - - /// A version constraint - pub version: Option, - - /// Format of the resulting archive (tar, tar.gz, tar.bz2, zip) - #[arg(short, long)] - pub format: Option, - - /// Write the archive to this directory - #[arg(long)] - pub dir: Option, - - /// Write the archive with the given file name - #[arg(long)] - pub file: Option, - - /// Ignore filters when saving archive - #[arg(long)] - pub ignore_filters: bool, -} - -pub fn execute(_args: &ArchiveArgs) { - todo!() -} -- cgit v1.3.1