1
1
#![ warn( clippy:: all, rust_2018_idioms) ]
2
2
3
3
use cargo_registry:: admin:: {
4
- delete_crate, delete_version, enqueue_job, git_import, migrate, normalize_index , populate ,
5
- render_readmes , test_pagerduty, transfer_crates, upload_index, verify_token, yank_version,
4
+ delete_crate, delete_version, enqueue_job, git_import, migrate, populate , render_readmes ,
5
+ test_pagerduty, transfer_crates, upload_index, verify_token, yank_version,
6
6
} ;
7
7
8
8
#[ derive( clap:: Parser , Debug ) ]
@@ -21,7 +21,6 @@ enum Command {
21
21
GitImport ( git_import:: Opts ) ,
22
22
#[ clap( subcommand) ]
23
23
EnqueueJob ( enqueue_job:: Command ) ,
24
- NormalizeIndex ( normalize_index:: Opts ) ,
25
24
}
26
25
27
26
fn main ( ) -> anyhow:: Result < ( ) > {
@@ -47,7 +46,6 @@ fn main() -> anyhow::Result<()> {
47
46
Command :: YankVersion ( opts) => yank_version:: run ( opts) ,
48
47
Command :: GitImport ( opts) => git_import:: run ( opts) ?,
49
48
Command :: EnqueueJob ( command) => enqueue_job:: run ( command) ?,
50
- Command :: NormalizeIndex ( opts) => normalize_index:: run ( opts) ?,
51
49
}
52
50
53
51
Ok ( ( ) )
0 commit comments