aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/commands/depends.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/commands/depends.rs')
-rw-r--r--src/commands/depends.rs23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/commands/depends.rs b/src/commands/depends.rs
deleted file mode 100644
index 33aabc6..0000000
--- a/src/commands/depends.rs
+++ /dev/null
@@ -1,23 +0,0 @@
-use clap::Args;
-
-#[derive(Args)]
-pub struct DependsArgs {
- /// Package to inspect
- pub package: String,
-
- /// Recursively resolve up to the root package
- #[arg(short, long)]
- pub recursive: bool,
-
- /// Prints the results as a nested tree
- #[arg(short, long)]
- pub tree: bool,
-
- /// Read dependency information from the lock file
- #[arg(long)]
- pub locked: bool,
-}
-
-pub fn execute(_args: &DependsArgs) {
- todo!()
-}