diff options
author | Aria <me@aria.rip> | 2024-01-17 13:01:01 +0000 |
---|---|---|
committer | Aria <me@aria.rip> | 2024-01-17 13:01:01 +0000 |
commit | 1fedc0261e47efc4510887c868ebaf0f6c37e28b (patch) | |
tree | ec475bdf9cc4c8f18f42e9f6e5f8be850b001307 | |
parent | 86e515a1db17ca1c0bae8eeba8e1164dce1a8d13 (diff) |
fix: remove dead code
-rw-r--r-- | src/crates/cli/src/main.rs | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/crates/cli/src/main.rs b/src/crates/cli/src/main.rs index 1633105..f0577aa 100644 --- a/src/crates/cli/src/main.rs +++ b/src/crates/cli/src/main.rs @@ -57,16 +57,6 @@ struct State { projects: Vec<Project>, } -// #[derive(FromArgs)] -// /// Show the candidate types selected by primrose -// #[argh(subcommand, name = "candidates")] -// pub struct CandidatesSubcommand {} - -// #[derive(FromArgs)] -// /// Show the profiling information generated from benchmarks -// #[argh(subcommand, name = "profile")] -// pub struct ProfileSubcommand {} - fn get_projects(args: &Args) -> Result<Vec<Project>> { let mut cmd = cargo_metadata::MetadataCommand::new(); if let Some(p) = &args.manifest_path { |