Skip to content

Commit 7c23724

Browse files
committed
Make collector download crate default to the primary category.
It's what I usually want, because crates downloaded from elsewhere (typically crates.io) are likely to be real-world code, and thus more appropriate in the primary category.
1 parent a50b673 commit 7c23724

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

collector/src/bin/collector.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -664,7 +664,7 @@ struct DownloadCommand {
664664
force: bool,
665665

666666
/// What category does the benchmark belong to
667-
#[clap(long, short('c'), arg_enum, global = true, default_value = "secondary")]
667+
#[clap(long, short('c'), arg_enum, global = true, default_value = "primary")]
668668
category: Category,
669669

670670
#[clap(subcommand)]

0 commit comments

Comments
 (0)