@@ -16,7 +16,6 @@ _arguments \
16
16
17
17
case $state in
18
18
args)
19
- #TODO: add path completion to manifest-path options
20
19
case $words[1] in
21
20
bench)
22
21
_arguments \
@@ -160,6 +159,19 @@ case $state in
160
159
'--color=:colorization option:(auto always never)' \
161
160
;;
162
161
162
+ metadata)
163
+ _arguments \
164
+ '(-h, --help)'{-h,--help}'[show help message]' \
165
+ '(-q, --quiet)'{-q,--quiet}'[no output printed to stdout]' \
166
+ '(-v, --verbose)'{-v,--verbose}'[use verbose output]' \
167
+ "--no-deps[output information only about the root package and don't fetch dependencies]" \
168
+ '--no-default-features[do not include the default feature]' \
169
+ '--manifest-path=[path to manifest]: :_files -/' \
170
+ '--features=[space separated feature list]' \
171
+ '--format-version=[format version(default: 1)]' \
172
+ '--color=:colorization option:(auto always never)' \
173
+ ;;
174
+
163
175
new)
164
176
_arguments \
165
177
'--bin[use binary template]' \
@@ -373,6 +385,7 @@ local -a commands;commands=(
373
385
'install:install a Rust binary'
374
386
'locate-project:print "Cargo.toml" location'
375
387
'login:login to remote server'
388
+ 'metadata:the metadata for a project in json'
376
389
'new:create a new project'
377
390
'owner:manage the owners of a crate on the registry'
378
391
'package:assemble local package into a distributable tarball'
0 commit comments