File tree Expand file tree Collapse file tree 3 files changed +10
-0
lines changed Expand file tree Collapse file tree 3 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ pub fn cli() -> App {
10
10
)
11
11
. arg ( opt ( "quiet" , "No output printed to stdout" ) . short ( "q" ) )
12
12
. arg ( Arg :: with_name ( "token" ) )
13
+ // --host is deprecated (use --registry instead)
13
14
. arg (
14
15
opt ( "host" , "Host to set the token for" )
15
16
. value_name ( "HOST" )
Original file line number Diff line number Diff line change @@ -19,7 +19,9 @@ pub fn cli() -> App {
19
19
"Display the tree for all packages in the workspace" ,
20
20
"Exclude specific workspace members" ,
21
21
)
22
+ // Deprecated, use --no-dedupe instead.
22
23
. arg ( Arg :: with_name ( "all" ) . long ( "all" ) . short ( "a" ) . hidden ( true ) )
24
+ // Deprecated, use --target=all instead.
23
25
. arg (
24
26
Arg :: with_name ( "all-targets" )
25
27
. long ( "all-targets" )
@@ -30,6 +32,7 @@ pub fn cli() -> App {
30
32
"Filter dependencies matching the given target-triple (default host platform). \
31
33
Pass `all` to include all targets.",
32
34
)
35
+ // Deprecated, use -e=no-dev instead.
33
36
. arg (
34
37
Arg :: with_name ( "no-dev-dependencies" )
35
38
. long ( "no-dev-dependencies" )
@@ -52,7 +55,9 @@ pub fn cli() -> App {
52
55
)
53
56
. short ( "i" ) ,
54
57
)
58
+ // Deprecated, use --prefix=none instead.
55
59
. arg ( Arg :: with_name ( "no-indent" ) . long ( "no-indent" ) . hidden ( true ) )
60
+ // Deprecated, use --prefix=depth instead.
56
61
. arg (
57
62
Arg :: with_name ( "prefix-depth" )
58
63
. long ( "prefix-depth" )
Original file line number Diff line number Diff line change @@ -32,21 +32,25 @@ pub fn cli() -> App {
32
32
. long ( "versioned-dirs" )
33
33
. help ( "Always include version in subdir name" ) ,
34
34
)
35
+ // Not supported.
35
36
. arg (
36
37
Arg :: with_name ( "no-merge-sources" )
37
38
. long ( "no-merge-sources" )
38
39
. hidden ( true ) ,
39
40
)
41
+ // Not supported.
40
42
. arg (
41
43
Arg :: with_name ( "relative-path" )
42
44
. long ( "relative-path" )
43
45
. hidden ( true ) ,
44
46
)
47
+ // Not supported.
45
48
. arg (
46
49
Arg :: with_name ( "only-git-deps" )
47
50
. long ( "only-git-deps" )
48
51
. hidden ( true ) ,
49
52
)
53
+ // Not supported.
50
54
. arg (
51
55
Arg :: with_name ( "disallow-duplicates" )
52
56
. long ( "disallow-duplicates" )
You can’t perform that action at this time.
0 commit comments