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/init.rs | 52 ---------------------------------------------------- 1 file changed, 52 deletions(-) delete mode 100644 src/commands/init.rs (limited to 'src/commands/init.rs') diff --git a/src/commands/init.rs b/src/commands/init.rs deleted file mode 100644 index 059e494..0000000 --- a/src/commands/init.rs +++ /dev/null @@ -1,52 +0,0 @@ -use clap::Args; - -#[derive(Args)] -pub struct InitArgs { - /// Name of the package (vendor/name) - #[arg(long)] - pub name: Option, - - /// Description of the package - #[arg(long)] - pub description: Option, - - /// Author name of the package - #[arg(long)] - pub author: Option, - - /// Type of the package - #[arg(long, value_name = "TYPE")] - pub r#type: Option, - - /// Homepage of the package - #[arg(long)] - pub homepage: Option, - - /// Package(s) to require - #[arg(long)] - pub require: Vec, - - /// Package(s) to require for development - #[arg(long)] - pub require_dev: Vec, - - /// Minimum stability (stable, RC, beta, alpha, dev) - #[arg(short, long)] - pub stability: Option, - - /// License of the package - #[arg(short, long)] - pub license: Option, - - /// Add a custom repository - #[arg(long)] - pub repository: Vec, - - /// Define a PSR-4 autoload namespace - #[arg(short, long)] - pub autoload: Option, -} - -pub fn execute(_args: &InitArgs) { - todo!() -} -- cgit v1.3.1