Skip to content

Commit c685c13

Browse files
weihangloehuss
andauthored
refactor(cargo-tree): simplify arg-parsing logic
Co-authored-by: Eric Huss <[email protected]>
1 parent 681c194 commit c685c13

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

src/bin/cargo/commands/tree.rs

+1-9
Original file line numberDiff line numberDiff line change
@@ -157,15 +157,7 @@ pub fn exec(config: &mut Config, args: &ArgMatches<'_>) -> CliResult {
157157
let (edge_kinds, no_proc_macro) = parse_edge_kinds(config, args)?;
158158
let graph_features = edge_kinds.contains(&EdgeKind::Feature);
159159

160-
let pkgs_to_prune = args.values_of("prune").map_or_else(
161-
|| Vec::new(),
162-
|ps| {
163-
let mut specs = ps.map(|p| p.to_string()).collect::<Vec<_>>();
164-
specs.sort_unstable();
165-
specs.dedup();
166-
specs
167-
},
168-
);
160+
let pkgs_to_prune = args._values_of("prune");
169161

170162
let packages = args.packages_from_flags()?;
171163
let mut invert = args

0 commit comments

Comments
 (0)