summaryrefslogtreecommitdiff
path: root/plugins/swiftpm/_swift
blob: 51c9fffa0daf31c7265fd868009409dc5372580e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
#compdef swift
local context state state_descr line
_swift_commandname=$words[1]
typeset -A opt_args

_swift() {
    integer ret=1
    local -a args
    args+=(
        '(-h --help)'{-h,--help}'[Show help information.]'
        '(-): :->command'
        '(-)*:: :->arg'
    )
    _arguments -w -s -S $args[@] && ret=0
    case $state in
        (command)
            local subcommands
            subcommands=(
                'run:Build and run an executable product'
                'build:Build sources into binary products'
                'test:Build and run tests'
                'package:Perform operations on Swift packages'
                'help:Show subcommand help information.'
            )
            _describe "subcommand" subcommands
            ;;
        (arg)
            case ${words[1]} in
                (run)
                    _swift_run
                    ;;
                (build)
                    _swift_build
                    ;;
                (test)
                    _swift_test
                    ;;
                (package)
                    _swift_package
                    ;;
                (help)
                    _swift_help
                    ;;
            esac
            ;;
    esac

    return ret
}

_swift_run() {
    integer ret=1
    local -a args
    args+=(
        '--package-path[Specify the package path to operate on (default current directory). This changes the working directory before any other operation]:package-path:_files -/'
        '--cache-path[Specify the shared cache directory path]:cache-path:_files -/'
        '--config-path[Specify the shared configuration directory path]:config-path:_files -/'
        '--security-path[Specify the shared security directory path]:security-path:_files -/'
        '--scratch-path[Specify a custom scratch directory path (default .build)]:scratch-path:_files -/'
        '--enable-dependency-cache[Use a shared cache when fetching dependencies]'
        '--disable-dependency-cache[Use a shared cache when fetching dependencies]'
        '--enable-build-manifest-caching'
        '--disable-build-manifest-caching'
        '--manifest-cache[Caching mode of Package.swift manifests (shared: shared cache, local: package'"'"'s build directory, none: disabled]:manifest-cache:'
        '(--verbose -v)'{--verbose,-v}'[Increase verbosity to include informational output]'
        '(--very-verbose --vv)'{--very-verbose,--vv}'[Increase verbosity to include debug output]'
        '--disable-sandbox[Disable using the sandbox when executing subprocesses]'
        '--enable-netrc[Load credentials from a .netrc file]'
        '--disable-netrc[Load credentials from a .netrc file]'
        '--netrc-file[Specify the .netrc file path.]:netrc-file:_files'
        '--enable-keychain[Search credentials in macOS keychain]'
        '--disable-keychain[Search credentials in macOS keychain]'
        '--resolver-fingerprint-checking:resolver-fingerprint-checking:'
        '--enable-prefetching'
        '--disable-prefetching'
        '(--force-resolved-versions --disable-automatic-resolution --only-use-versions-from-resolved-file)'{--force-resolved-versions,--disable-automatic-resolution,--only-use-versions-from-resolved-file}'[Only use versions from the Package.resolved file and fail resolution if it is out-of-date]'
        '--skip-update[Skip updating dependencies from their remote during a resolution]'
        '--disable-scm-to-registry-transformation[disable source control to registry transformation]'
        '--use-registry-identity-for-scm[look up source control dependencies in the registry and use their registry identity when possible to help deduplicate across the two origins]'
        '--replace-scm-with-registry[look up source control dependencies in the registry and use the registry to retrieve them instead of source control when possible]'
        '(--configuration -c)'{--configuration,-c}'[Build with configuration]:configuration:(debug release)'
        '-Xcc[Pass flag through to all C compiler invocations]:Xcc:'
        '-Xswiftc[Pass flag through to all Swift compiler invocations]:Xswiftc:'
        '-Xlinker[Pass flag through to all linker invocations]:Xlinker:'
        '-Xcxx[Pass flag through to all C++ compiler invocations]:Xcxx:'
        '--triple:triple:'
        '--sdk:sdk:_files -/'
        '--toolchain:toolchain:_files -/'
        '--sanitize[Turn on runtime checks for erroneous behavior, possible values: address, thread, undefined, scudo]:sanitize:'
        '--auto-index-store[Enable or disable indexing-while-building feature]'
        '--enable-index-store[Enable or disable indexing-while-building feature]'
        '--disable-index-store[Enable or disable indexing-while-building feature]'
        '--enable-parseable-module-interfaces'
        '(--jobs -j)'{--jobs,-j}'[The number of jobs to spawn in parallel during the build process]:jobs:'
        '--emit-swift-module-separately'
        '--use-integrated-swift-driver'
        '--experimental-explicit-module-build'
        '--print-manifest-job-graph[Write the command graph for the build manifest as a graphviz file]'
        '--build-system:build-system:(native xcode)'
        '--enable-dead-strip[Disable/enable dead code stripping by the linker]'
        '--disable-dead-strip[Disable/enable dead code stripping by the linker]'
        '--static-swift-stdlib[Link Swift stdlib statically]'
        '--no-static-swift-stdlib[Link Swift stdlib statically]'
        '--repl[Launch Swift REPL for the package]'
        '--debugger[Launch the executable in a debugger session]'
        '--run[Launch the executable with the provided arguments]'
        '--skip-build[Skip building the executable product]'
        '--build-tests[Build both source and test targets]'
        ':executable:{local -a list; list=(${(f)"$(swift package completion-tool list-executables)"}); _describe '''' list}'
        ':arguments:'
        '--version[Show the version.]'
        '(-help -h --help)'{-help,-h,--help}'[Show help information.]'
    )
    _arguments -w -s -S $args[@] && ret=0

    return ret
}

_swift_build() {
    integer ret=1
    local -a args
    args+=(
        '--package-path[Specify the package path to operate on (default current directory). This changes the working directory before any other operation]:package-path:_files -/'
        '--cache-path[Specify the shared cache directory path]:cache-path:_files -/'
        '--config-path[Specify the shared configuration directory path]:config-path:_files -/'
        '--security-path[Specify the shared security directory path]:security-path:_files -/'
        '--scratch-path[Specify a custom scratch directory path (default .build)]:scratch-path:_files -/'
        '--enable-dependency-cache[Use a shared cache when fetching dependencies]'
        '--disable-dependency-cache[Use a shared cache when fetching dependencies]'
        '--enable-build-manifest-caching'
        '--disable-build-manifest-caching'
        '--manifest-cache[Caching mode of Package.swift manifests (shared: shared cache, local: package'"'"'s build directory, none: disabled]:manifest-cache:'
        '(--verbose -v)'{--verbose,-v}'[Increase verbosity to include informational output]'
        '(--very-verbose --vv)'{--very-verbose,--vv}'[Increase verbosity to include debug output]'
        '--disable-sandbox[Disable using the sandbox when executing subprocesses]'
        '--enable-netrc[Load credentials from a .netrc file]'
        '--disable-netrc[Load credentials from a .netrc file]'
        '--netrc-file[Specify the .netrc file path.]:netrc-file:_files'
        '--enable-keychain[Search credentials in macOS keychain]'
        '--disable-keychain[Search credentials in macOS keychain]'
        '--resolver-fingerprint-checking:resolver-fingerprint-checking:'
        '--enable-prefetching'
        '--disable-prefetching'
        '(--force-resolved-versions --disable-automatic-resolution --only-use-versions-from-resolved-file)'{--force-resolved-versions,--disable-automatic-resolution,--only-use-versions-from-resolved-file}'[Only use versions from the Package.resolved file and fail resolution if it is out-of-date]'
        '--skip-update[Skip updating dependencies from their remote during a resolution]'
        '--disable-scm-to-registry-transformation[disable source control to registry transformation]'
        '--use-registry-identity-for-scm[look up source control dependencies in the registry and use their registry identity when possible to help deduplicate across the two origins]'
        '--replace-scm-with-registry[look up source control dependencies in the registry and use the registry to retrieve them instead of source control when possible]'
        '(--configuration -c)'{--configuration,-c}'[Build with configuration]:configuration:(debug release)'
        '-Xcc[Pass flag through to all C compiler invocations]:Xcc:'
        '-Xswiftc[Pass flag through to all Swift compiler invocations]:Xswiftc:'
        '-Xlinker[Pass flag through to all linker invocations]:Xlinker:'
        '-Xcxx[Pass flag through to all C++ compiler invocations]:Xcxx:'
        '--triple:triple:'
        '--sdk:sdk:_files -/'
        '--toolchain:toolchain:_files -/'
        '--sanitize[Turn on runtime checks for erroneous behavior, possible values: address, thread, undefined, scudo]:sanitize:'
        '--auto-index-store[Enable or disable indexing-while-building feature]'
        '--enable-index-store[Enable or disable indexing-while-building feature]'
        '--disable-index-store[Enable or disable indexing-while-building feature]'
        '--enable-parseable-module-interfaces'
        '(--jobs -j)'{--jobs,-j}'[The number of jobs to spawn in parallel during the build process]:jobs:'
        '--emit-swift-module-separately'
        '--use-integrated-swift-driver'
        '--experimental-explicit-module-build'
        '--print-manifest-job-graph[Write the command graph for the build manifest as a graphviz file]'
        '--build-system:build-system:(native xcode)'
        '--enable-dead-strip[Disable/enable dead code stripping by the linker]'
        '--disable-dead-strip[Disable/enable dead code stripping by the linker]'
        '--static-swift-stdlib[Link Swift stdlib statically]'
        '--no-static-swift-stdlib[Link Swift stdlib statically]'
        '--build-tests[Build both source and test targets]'
        '--show-bin-path[Print the binary output path]'
        '--target[Build the specified target]:target:'
        '--product[Build the specified product]:product:'
        '--version[Show the version.]'
        '(-help -h --help)'{-help,-h,--help}'[Show help information.]'
    )
    _arguments -w -s -S $args[@] && ret=0

    return ret
}

_swift_test() {
    integer ret=1
    local -a args
    args+=(
        '--package-path[Specify the package path to operate on (default current directory). This changes the working directory before any other operation]:package-path:_files -/'
        '--cache-path[Specify the shared cache directory path]:cache-path:_files -/'
        '--config-path[Specify the shared configuration directory path]:config-path:_files -/'
        '--security-path[Specify the shared security directory path]:security-path:_files -/'
        '--scratch-path[Specify a custom scratch directory path (default .build)]:scratch-path:_files -/'
        '--enable-dependency-cache[Use a shared cache when fetching dependencies]'
        '--disable-dependency-cache[Use a shared cache when fetching dependencies]'
        '--enable-build-manifest-caching'
        '--disable-build-manifest-caching'
        '--manifest-cache[Caching mode of Package.swift manifests (shared: shared cache, local: package'"'"'s build directory, none: disabled]:manifest-cache:'
        '(--verbose -v)'{--verbose,-v}'[Increase verbosity to include informational output]'
        '(--very-verbose --vv)'{--very-verbose,--vv}'[Increase verbosity to include debug output]'
        '--disable-sandbox[Disable using the sandbox when executing subprocesses]'
        '--enable-netrc[Load credentials from a .netrc file]'
        '--disable-netrc[Load credentials from a .netrc file]'
        '--netrc-file[Specify the .netrc file path.]:netrc-file:_files'
        '--enable-keychain[Search credentials in macOS keychain]'
        '--disable-keychain[Search credentials in macOS keychain]'
        '--resolver-fingerprint-checking:resolver-fingerprint-checking:'
        '--enable-prefetching'
        '--disable-prefetching'
        '(--force-resolved-versions --disable-automatic-resolution --only-use-versions-from-resolved-file)'{--force-resolved-versions,--disable-automatic-resolution,--only-use-versions-from-resolved-file}'[Only use versions from the Package.resolved file and fail resolution if it is out-of-date]'
        '--skip-update[Skip updating dependencies from their remote during a resolution]'
        '--disable-scm-to-registry-transformation[disable source control to registry transformation]'
        '--use-registry-identity-for-scm[look up source control dependencies in the registry and use their registry identity when possible to help deduplicate across the two origins]'
        '--replace-scm-with-registry[look up source control dependencies in the registry and use the registry to retrieve them instead of source control when possible]'
        '(--configuration -c)'{--configuration,-c}'[Build with configuration]:configuration:(debug release)'
        '-Xcc[Pass flag through to all C compiler invocations]:Xcc:'
        '-Xswiftc[Pass flag through to all Swift compiler invocations]:Xswiftc:'
        '-Xlinker[Pass flag through to all linker invocations]:Xlinker:'
        '-Xcxx[Pass flag through to all C++ compiler invocations]:Xcxx:'
        '--triple:triple:'
        '--sdk:sdk:_files -/'
        '--toolchain:toolchain:_files -/'
        '--sanitize[Turn on runtime checks for erroneous behavior, possible values: address, thread, undefined, scudo]:sanitize:'
        '--auto-index-store[Enable or disable indexing-while-building feature]'
        '--enable-index-store[Enable or disable indexing-while-building feature]'
        '--disable-index-store[Enable or disable indexing-while-building feature]'
        '--enable-parseable-module-interfaces'
        '(--jobs -j)'{--jobs,-j}'[The number of jobs to spawn in parallel during the build process]:jobs:'
        '--emit-swift-module-separately'
        '--use-integrated-swift-driver'
        '--experimental-explicit-module-build'
        '--print-manifest-job-graph[Write the command graph for the build manifest as a graphviz file]'
        '--build-system:build-system:(native xcode)'
        '--enable-dead-strip[Disable/enable dead code stripping by the linker]'
        '--disable-dead-strip[Disable/enable dead code stripping by the linker]'
        '--static-swift-stdlib[Link Swift stdlib statically]'
        '--no-static-swift-stdlib[Link Swift stdlib statically]'
        '--skip-build[Skip building the test target]'
        '--parallel[Run the tests in parallel.]'
        '--num-workers[Number of tests to execute in parallel.]:num-workers:'
        '(--list-tests -l)'{--list-tests,-l}'[Lists test methods in specifier format]'
        '--show-codecov-path[Print the path of the exported code coverage JSON file]'
        '(-s --specifier)'{-s,--specifier}':specifier:'
        '--filter[Run test cases matching regular expression, Format: <test-target>.<test-case> or <test-target>.<test-case>/<test>]:filter:'
        '--skip[Skip test cases matching regular expression, Example: --skip PerformanceTests]:skip:'
        '--xunit-output[Path where the xUnit xml file should be generated.]:xunit-output:_files -/'
        '--test-product[Test the specified product.]:test-product:'
        '--enable-testable-imports[Enable or disable testable imports. Enabled by default.]'
        '--disable-testable-imports[Enable or disable testable imports. Enabled by default.]'
        '--enable-code-coverage[Enable code coverage]'
        '--disable-code-coverage[Enable code coverage]'
        '--version[Show the version.]'
        '(-help -h --help)'{-help,-h,--help}'[Show help information.]'
    )
    _arguments -w -s -S $args[@] && ret=0

    return ret
}

_swift_package() {
    integer ret=1
    local -a args
    args+=(
        '--package-path[Specify the package path to operate on (default current directory). This changes the working directory before any other operation]:package-path:_files -/'
        '--cache-path[Specify the shared cache directory path]:cache-path:_files -/'
        '--config-path[Specify the shared configuration directory path]:config-path:_files -/'
        '--security-path[Specify the shared security directory path]:security-path:_files -/'
        '--scratch-path[Specify a custom scratch directory path (default .build)]:scratch-path:_files -/'
        '--enable-dependency-cache[Use a shared cache when fetching dependencies]'
        '--disable-dependency-cache[Use a shared cache when fetching dependencies]'
        '--enable-build-manifest-caching'
        '--disable-build-manifest-caching'
        '--manifest-cache[Caching mode of Package.swift manifests (shared: shared cache, local: package'"'"'s build directory, none: disabled]:manifest-cache:'
        '(--verbose -v)'{--verbose,-v}'[Increase verbosity to include informational output]'
        '(--very-verbose --vv)'{--very-verbose,--vv}'[Increase verbosity to include debug output]'
        '--disable-sandbox[Disable using the sandbox when executing subprocesses]'
        '--enable-netrc[Load credentials from a .netrc file]'
        '--disable-netrc[Load credentials from a .netrc file]'
        '--netrc-file[Specify the .netrc file path.]:netrc-file:_files'
        '--enable-keychain[Search credentials in macOS keychain]'
        '--disable-keychain[Search credentials in macOS keychain]'
        '--resolver-fingerprint-checking:resolver-fingerprint-checking:'
        '--enable-prefetching'
        '--disable-prefetching'
        '(--force-resolved-versions --disable-automatic-resolution --only-use-versions-from-resolved-file)'{--force-resolved-versions,--disable-automatic-resolution,--only-use-versions-from-resolved-file}'[Only use versions from the Package.resolved file and fail resolution if it is out-of-date]'
        '--skip-update[Skip updating dependencies from their remote during a resolution]'
        '--disable-scm-to-registry-transformation[disable source control to registry transformation]'
        '--use-registry-identity-for-scm[look up source control dependencies in the registry and use their registry identity when possible to help deduplicate across the two origins]'
        '--replace-scm-with-registry[look up source control dependencies in the registry and use the registry to retrieve them instead of source control when possible]'
        '(--configuration -c)'{--configuration,-c}'[Build with configuration]:configuration:(debug release)'
        '-Xcc[Pass flag through to all C compiler invocations]:Xcc:'
        '-Xswiftc[Pass flag through to all Swift compiler invocations]:Xswiftc:'
        '-Xlinker[Pass flag through to all linker invocations]:Xlinker:'
        '-Xcxx[Pass flag through to all C++ compiler invocations]:Xcxx:'
        '--triple:triple:'
        '--sdk:sdk:_files -/'
        '--toolchain:toolchain:_files -/'
        '--sanitize[Turn on runtime checks for erroneous behavior, possible values: address, thread, undefined, scudo]:sanitize:'
        '--auto-index-store[Enable or disable indexing-while-building feature]'
        '--enable-index-store[Enable or disable indexing-while-building feature]'
        '--disable-index-store[Enable or disable indexing-while-building feature]'
        '--enable-parseable-module-interfaces'
        '(--jobs -j)'{--jobs,-j}'[The number of jobs to spawn in parallel during the build process]:jobs:'
        '--emit-swift-module-separately'
        '--use-integrated-swift-driver'
        '--experimental-explicit-module-build'
        '--print-manifest-job-graph[Write the command graph for the build manifest as a graphviz file]'
        '--build-system:build-system:(native xcode)'
        '--enable-dead-strip[Disable/enable dead code stripping by the linker]'
        '--disable-dead-strip[Disable/enable dead code stripping by the linker]'
        '--static-swift-stdlib[Link Swift stdlib statically]'
        '--no-static-swift-stdlib[Link Swift stdlib statically]'
        '--version[Show the version.]'
        '(-help -h --help)'{-help,-h,--help}'[Show help information.]'
        '(-): :->command'
        '(-)*:: :->arg'
    )
    _arguments -w -s -S $args[@] && ret=0
    case $state in
        (command)
            local subcommands
            subcommands=(
                'clean:Delete build artifacts'
                'purge-cache:Purge the global repository cache.'
                'reset:Reset the complete cache/build directory'
                'update:Update package dependencies'
                'describe:Describe the current package'
                'init:Initialize a new package'
                '_format:'
                'diagnose-api-breaking-changes:Diagnose API-breaking changes to Swift modules in a package'
                'experimental-api-diff:Deprecated - use `swift package diagnose-api-breaking-changes` instead'
                'dump-symbol-graph:Dump Symbol Graph'
                'dump-pif:'
                'dump-package:Print parsed Package.swift as JSON'
                'edit:Put a package in editable mode'
                'unedit:Remove a package from editable mode'
                'config:Manipulate configuration of the package'
                'resolve:Resolve package dependencies'
                'fetch:'
                'show-dependencies:Print the resolved dependency graph'
                'tools-version:Manipulate tools version of the current package'
                'generate-xcodeproj:Generates an Xcode project. This command will be deprecated soon.'
                'compute-checksum:Compute the checksum for a binary artifact.'
                'archive-source:Create a source archive for the package'
                'completion-tool:Completion tool (for shell completions)'
                'plugin:Invoke a command plugin or perform other actions on command plugins'
                'default-command:'
            )
            _describe "subcommand" subcommands
            ;;
        (arg)
            case ${words[1]} in
                (clean)
                    _swift_package_clean
                    ;;
                (purge-cache)
                    _swift_package_purge-cache
                    ;;
                (reset)
                    _swift_package_reset
                    ;;
                (update)
                    _swift_package_update
                    ;;
                (describe)
                    _swift_package_describe
                    ;;
                (init)
                    _swift_package_init
                    ;;
                (_format)
                    _swift_package__format
                    ;;
                (diagnose-api-breaking-changes)
                    _swift_package_diagnose-api-breaking-changes
                    ;;
                (experimental-api-diff)
                    _swift_package_experimental-api-diff
                    ;;
                (dump-symbol-graph)
                    _swift_package_dump-symbol-graph
                    ;;
                (dump-pif)
                    _swift_package_dump-pif
                    ;;
                (dump-package)
                    _swift_package_dump-package
                    ;;
                (edit)
                    _swift_package_edit
                    ;;
                (unedit)
                    _swift_package_unedit
                    ;;
                (config)
                    _swift_package_config
                    ;;
                (resolve)
                    _swift_package_resolve
                    ;;
                (fetch)
                    _swift_package_fetch
                    ;;
                (show-dependencies)
                    _swift_package_show-dependencies
                    ;;
                (tools-version)
                    _swift_package_tools-version
                    ;;
                (generate-xcodeproj)
                    _swift_package_generate-xcodeproj
                    ;;
                (compute-checksum)
                    _swift_package_compute-checksum
                    ;;
                (archive-source)
                    _swift_package_archive-source
                    ;;
                (completion-tool)
                    _swift_package_completion-tool
                    ;;
                (plugin)
                    _swift_package_plugin
                    ;;
                (default-command)
                    _swift_package_default-command
                    ;;
            esac
            ;;
    esac

    return ret
}

_swift_package_clean() {
    integer ret=1
    local -a args
    args+=(
        '--version[Show the version.]'
        '(-help -h --help)'{-help,-h,--help}'[Show help information.]'
    )
    _arguments -w -s -S $args[@] && ret=0

    return ret
}

_swift_package_purge-cache() {
    integer ret=1
    local -a args
    args+=(
        '--version[Show the version.]'
        '(-help -h --help)'{-help,-h,--help}'[Show help information.]'
    )
    _arguments -w -s -S $args[@] && ret=0

    return ret
}

_swift_package_reset() {
    integer ret=1
    local -a args
    args+=(
        '--version[Show the version.]'
        '(-help -h --help)'{-help,-h,--help}'[Show help information.]'
    )
    _arguments -w -s -S $args[@] && ret=0

    return ret
}

_swift_package_update() {
    integer ret=1
    local -a args
    args+=(
        '(--dry-run -n)'{--dry-run,-n}'[Display the list of dependencies that can be updated]'
        ':packages:'
        '--version[Show the version.]'
        '(-help -h --help)'{-help,-h,--help}'[Show help information.]'
    )
    _arguments -w -s -S $args[@] && ret=0

    return ret
}

_swift_package_describe() {
    integer ret=1
    local -a args
    args+=(
        '--type[json | text]:type:'
        '--version[Show the version.]'
        '(-help -h --help)'{-help,-h,--help}'[Show help information.]'
    )
    _arguments -w -s -S $args[@] && ret=0

    return ret
}

_swift_package_init() {
    integer ret=1
    local -a args
    args+=(
        '--type[Package type: empty | library | executable | system-module | manifest]:type:'
        '--name[Provide custom package name]:name:'
        '--version[Show the version.]'
        '(-help -h --help)'{-help,-h,--help}'[Show help information.]'
    )
    _arguments -w -s -S $args[@] && ret=0

    return ret
}

_swift_package__format() {
    integer ret=1
    local -a args
    args+=(
        ':swift-format-flags:'
        '--version[Show the version.]'
        '(-help -h --help)'{-help,-h,--help}'[Show help information.]'
    )
    _arguments -w -s -S $args[@] && ret=0

    return ret
}

_swift_package_diagnose-api-breaking-changes() {
    integer ret=1
    local -a args
    args+=(
        '--breakage-allowlist-path[The path to a text file containing breaking changes which should be ignored by the API comparison. Each ignored breaking change in the file should appear on its own line and contain the exact message to be ignored (e.g. '"'"'API breakage: func foo() has been removed'"'"').]:breakage-allowlist-path:_files -/'
        ':treeish:'
        '--products[One or more products to include in the API comparison. If present, only the specified products (and any targets specified using `--targets`) will be compared.]:products:'
        '--targets[One or more targets to include in the API comparison. If present, only the specified targets (and any products specified using `--products`) will be compared.]:targets:'
        '--baseline-dir[The path to a directory used to store API baseline files. If unspecified, a temporary directory will be used.]:baseline-dir:_files -/'
        '--regenerate-baseline[Regenerate the API baseline, even if an existing one is available.]'
        '--version[Show the version.]'
        '(-help -h --help)'{-help,-h,--help}'[Show help information.]'
    )
    _arguments -w -s -S $args[@] && ret=0

    return ret
}

_swift_package_experimental-api-diff() {
    integer ret=1
    local -a args
    args+=(
        ':args:'
        '--version[Show the version.]'
        '(-help -h --help)'{-help,-h,--help}'[Show help information.]'
    )
    _arguments -w -s -S $args[@] && ret=0

    return ret
}

_swift_package_dump-symbol-graph() {
    integer ret=1
    local -a args
    args+=(
        '--pretty-print[Pretty-print the output JSON.]'
        '--skip-synthesized-members[Skip members inherited through classes or default implementations.]'
        '--minimum-access-level[Include symbols with this access level or more. Possible values: private | fileprivate | internal | public | open]:minimum-access-level:(private fileprivate internal public open)'
        '--skip-inherited-docs[Skip emitting doc comments for members inherited through classes or default implementations.]'
        '--include-spi-symbols[Add symbols with SPI information to the symbol graph.]'
        '--version[Show the version.]'
        '(-help -h --help)'{-help,-h,--help}'[Show help information.]'
    )
    _arguments -w -s -S $args[@] && ret=0

    return ret
}

_swift_package_dump-pif() {
    integer ret=1
    local -a args
    args+=(
        '--preserve-structure[Preserve the internal structure of PIF]'
        '--version[Show the version.]'
        '(-help -h --help)'{-help,-h,--help}'[Show help information.]'
    )
    _arguments -w -s -S $args[@] && ret=0

    return ret
}

_swift_package_dump-package() {
    integer ret=1
    local -a args
    args+=(
        '--version[Show the version.]'
        '(-help -h --help)'{-help,-h,--help}'[Show help information.]'
    )
    _arguments -w -s -S $args[@] && ret=0

    return ret
}

_swift_package_edit() {
    integer ret=1
    local -a args
    args+=(
        '--revision[The revision to edit]:revision:'
        '--branch[The branch to create]:branch:'
        '--path[Create or use the checkout at this path]:path:_files -/'
        ':package-name:'
        '--version[Show the version.]'
        '(-help -h --help)'{-help,-h,--help}'[Show help information.]'
    )
    _arguments -w -s -S $args[@] && ret=0

    return ret
}

_swift_package_unedit() {
    integer ret=1
    local -a args
    args+=(
        '--force[Unedit the package even if it has uncommitted and unpushed changes]'
        ':package-name:'
        '--version[Show the version.]'
        '(-help -h --help)'{-help,-h,--help}'[Show help information.]'
    )
    _arguments -w -s -S $args[@] && ret=0

    return ret
}

_swift_package_config() {
    integer ret=1
    local -a args
    args+=(
        '--version[Show the version.]'
        '(-help -h --help)'{-help,-h,--help}'[Show help information.]'
        '(-): :->command'
        '(-)*:: :->arg'
    )
    _arguments -w -s -S $args[@] && ret=0
    case $state in
        (command)
            local subcommands
            subcommands=(
                'set-mirror:Set a mirror for a dependency'
                'unset-mirror:Remove an existing mirror'
                'get-mirror:Print mirror configuration for the given package dependency'
            )
            _describe "subcommand" subcommands
            ;;
        (arg)
            case ${words[1]} in
                (set-mirror)
                    _swift_package_config_set-mirror
                    ;;
                (unset-mirror)
                    _swift_package_config_unset-mirror
                    ;;
                (get-mirror)
                    _swift_package_config_get-mirror
                    ;;
            esac
            ;;
    esac

    return ret
}

_swift_package_config_set-mirror() {
    integer ret=1
    local -a args
    args+=(
        '--package-url[The package dependency url]:package-url:'
        '--original-url[The original url]:original-url:'
        '--mirror-url[The mirror url]:mirror-url:'
        '--version[Show the version.]'
        '(-help -h --help)'{-help,-h,--help}'[Show help information.]'
    )
    _arguments -w -s -S $args[@] && ret=0

    return ret
}

_swift_package_config_unset-mirror() {
    integer ret=1
    local -a args
    args+=(
        '--package-url[The package dependency url]:package-url:'
        '--original-url[The original url]:original-url:'
        '--mirror-url[The mirror url]:mirror-url:'
        '--version[Show the version.]'
        '(-help -h --help)'{-help,-h,--help}'[Show help information.]'
    )
    _arguments -w -s -S $args[@] && ret=0

    return ret
}

_swift_package_config_get-mirror() {
    integer ret=1
    local -a args
    args+=(
        '--package-url[The package dependency url]:package-url:'
        '--original-url[The original url]:original-url:'
        '--version[Show the version.]'
        '(-help -h --help)'{-help,-h,--help}'[Show help information.]'
    )
    _arguments -w -s -S $args[@] && ret=0

    return ret
}

_swift_package_resolve() {
    integer ret=1
    local -a args
    args+=(
        '--version[The version to resolve at]:version:'
        '--branch[The branch to resolve at]:branch:'
        '--revision[The revision to resolve at]:revision:'
        ':package-name:'
        '--version[Show the version.]'
        '(-help -h --help)'{-help,-h,--help}'[Show help information.]'
    )
    _arguments -w -s -S $args[@] && ret=0

    return ret
}

_swift_package_fetch() {
    integer ret=1
    local -a args
    args+=(
        '--version[The version to resolve at]:version:'
        '--branch[The branch to resolve at]:branch:'
        '--revision[The revision to resolve at]:revision:'
        ':package-name:'
        '--version[Show the version.]'
        '(-help -h --help)'{-help,-h,--help}'[Show help information.]'
    )
    _arguments -w -s -S $args[@] && ret=0

    return ret
}

_swift_package_show-dependencies() {
    integer ret=1
    local -a args
    args+=(
        '--format[text | dot | json | flatlist]:format:'
        '(--output-path -o)'{--output-path,-o}'[The absolute or relative path to output the resolved dependency graph.]:output-path:_files -/'
        '--version[Show the version.]'
        '(-help -h --help)'{-help,-h,--help}'[Show help information.]'
    )
    _arguments -w -s -S $args[@] && ret=0

    return ret
}

_swift_package_tools-version() {
    integer ret=1
    local -a args
    args+=(
        '--set-current[Set tools version of package to the current tools version in use]'
        '--set[Set tools version of package to the given value]:set:'
        '--version[Show the version.]'
        '(-help -h --help)'{-help,-h,--help}'[Show help information.]'
    )
    _arguments -w -s -S $args[@] && ret=0

    return ret
}

_swift_package_generate-xcodeproj() {
    integer ret=1
    local -a args
    args+=(
        '--xcconfig-overrides[Path to xcconfig file]:xcconfig-overrides:_files'
        '--output[Path where the Xcode project should be generated]:output:_files -/'
        '--legacy-scheme-generator[Use the legacy scheme generator]'
        '--watch[Watch for changes to the Package manifest to regenerate the Xcode project]'
        '--skip-extra-files[Do not add file references for extra files to the generated Xcode project]'
        '--enable-code-coverage[Enable code coverage]'
        '--disable-code-coverage[Enable code coverage]'
        '--version[Show the version.]'
        '(-help -h --help)'{-help,-h,--help}'[Show help information.]'
    )
    _arguments -w -s -S $args[@] && ret=0

    return ret
}

_swift_package_compute-checksum() {
    integer ret=1
    local -a args
    args+=(
        ':path:_files -/'
        '--version[Show the version.]'
        '(-help -h --help)'{-help,-h,--help}'[Show help information.]'
    )
    _arguments -w -s -S $args[@] && ret=0

    return ret
}

_swift_package_archive-source() {
    integer ret=1
    local -a args
    args+=(
        '(-o --output)'{-o,--output}'[The absolute or relative path for the generated source archive]:output:_files -/'
        '--version[Show the version.]'
        '(-help -h --help)'{-help,-h,--help}'[Show help information.]'
    )
    _arguments -w -s -S $args[@] && ret=0

    return ret
}

_swift_package_completion-tool() {
    integer ret=1
    local -a args
    args+=(
        ':mode:(generate-bash-script generate-zsh-script generate-fish-script list-dependencies list-executables list-snippets)'
        '--version[Show the version.]'
        '(-help -h --help)'{-help,-h,--help}'[Show help information.]'
    )
    _arguments -w -s -S $args[@] && ret=0

    return ret
}

_swift_package_plugin() {
    integer ret=1
    local -a args
    args+=(
        '--list[List the available command plugins]'
        '--allow-writing-to-package-directory[Allow the plugin to write to the package directory]'
        '--allow-writing-to-directory[Allow the plugin to write to an additional directory]:allow-writing-to-directory:'
        ':command:'
        ':arguments:'
        '--version[Show the version.]'
        '(-help -h --help)'{-help,-h,--help}'[Show help information.]'
    )
    _arguments -w -s -S $args[@] && ret=0

    return ret
}

_swift_package_default-command() {
    integer ret=1
    local -a args
    args+=(
        '--allow-writing-to-package-directory[Allow the plugin to write to the package directory]'
        '--allow-writing-to-directory[Allow the plugin to write to an additional directory]:allow-writing-to-directory:'
        ':remaining:'
        '--version[Show the version.]'
        '(-help -h --help)'{-help,-h,--help}'[Show help information.]'
    )
    _arguments -w -s -S $args[@] && ret=0

    return ret
}

_swift_help() {
    integer ret=1
    local -a args
    args+=(
        ':subcommands:'
    )
    _arguments -w -s -S $args[@] && ret=0

    return ret
}


_custom_completion() {
    local completions=("${(@f)$($*)}")
    _describe '' completions
}

_swift