forked from SwiftPackageIndex/PackageList
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackages.json
More file actions
2499 lines (2499 loc) · 123 KB
/
packages.json
File metadata and controls
2499 lines (2499 loc) · 123 KB
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
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
"https://github.com/0111b/JSONDecoder-Keypath.git",
"https://github.com/0x7fs/countedset.git",
"https://github.com/0xdeadp00l/bech32.git",
"https://github.com/1024jp/GzipSwift.git",
"https://github.com/1024jp/WFColorCode.git",
"https://github.com/10clouds/ParticlePullToRefresh-iOS.git",
"https://github.com/123flo321/pogoprotos-swift.git",
"https://github.com/1fr3dg/ResourcePackage.git",
"https://github.com/1fr3dg/SimpleEncrypter.git",
"https://github.com/1fr3dg/TextFormater.git",
"https://github.com/20tab/depthnsdictionary.git",
"https://github.com/3a4oT/DateToolsObjC.git",
"https://github.com/3d4medical/gltfscenekit.git",
"https://github.com/3lvis/Networking.git",
"https://github.com/3qax/swiftygfx.git",
"https://github.com/3qax/swiftyoled.git",
"https://github.com/417-72KI/SwiftUtilities.git",
"https://github.com/aaastorga/darksky-provider.git",
"https://github.com/AaronBratcher/ALBNoSQLDB.git",
"https://github.com/aasimk2000/file-existence.git",
"https://github.com/abdullahselek/ASCollectionView.git",
"https://github.com/abdullahselek/Lighty.git",
"https://github.com/abdullahselek/Swifty360Player.git",
"https://github.com/abdullahselek/SwiftyMessenger.git",
"https://github.com/abdullahselek/SwiftyNotifications.git",
"https://github.com/abdullahselek/TakeASelfie.git",
"https://github.com/abeintopalo/appiconsetgen.git",
"https://github.com/aciidb0mb3r/SwiftMQTT.git",
"https://github.com/adam-fowler/aws-cognito-authentication.git",
"https://github.com/adam-fowler/aws-signer.git",
"https://github.com/adam-fowler/big-num.git",
"https://github.com/adam-fowler/compress-nio.git",
"https://github.com/adam-fowler/dictionary-encoder.git",
"https://github.com/adam-fowler/s3-filesystem-kit.git",
"https://github.com/adam-fowler/xml-encoder.git",
"https://github.com/adamnemecek/phantomlike.git",
"https://github.com/adamnemecek/webmidikit.git",
"https://github.com/adamwaite/Validator.git",
"https://github.com/adhumi/bradel.git",
"https://github.com/Adorkable/Eunomia.git",
"https://github.com/Adorkable/swift-log-format-and-pipe.git",
"https://github.com/adtrevor/myhtml.git",
"https://github.com/aestesis/aether-example.git",
"https://github.com/aestesis/aether.git",
"https://github.com/aestesis/vulkan.git",
"https://github.com/agisboye/swiftlmdb.git",
"https://github.com/agnosticdev/networkconnectivity.git",
"https://github.com/aguilarpgc/timelapse.git",
"https://github.com/ahti/SQLele.git",
"https://github.com/ahti/SQLeleCoder.git",
"https://github.com/aidantwoods/swift-paseto.git",
"https://github.com/airbnb/AloeStackView.git",
"https://github.com/airbnb/lottie-ios.git",
"https://github.com/airbnb/ResilientDecoding.git",
"https://github.com/akane/AnnotationInject.git",
"https://github.com/akane/Magellan.git",
"https://github.com/akashivskyy/QuickSwiftCheck.git",
"https://github.com/akazm/stimpak.git",
"https://github.com/akhilcb/ACBTokenField.git",
"https://github.com/akkyie/WAKit.git",
"https://github.com/akosma/SwiftMoment.git",
"https://github.com/Alamofire/Alamofire.git",
"https://github.com/Alamofire/AlamofireImage.git",
"https://github.com/albertodebortoli/Promis.git",
"https://github.com/Alecrim/AlecrimAsyncKit.git",
"https://github.com/Alecrim/AlecrimCoreData.git",
"https://github.com/aleph7/HDF5Kit.git",
"https://github.com/aleph7/Upsurge.git",
"https://github.com/alexandertar/LASwift.git",
"https://github.com/alexaubry/HTMLString.git",
"https://github.com/alexaubry/servercrypto.git",
"https://github.com/alexdrone/Proxy.git",
"https://github.com/alexdrone/Render.git",
"https://github.com/alexdrone/Store.git",
"https://github.com/alexito4/equallyspacedstack.git",
"https://github.com/alexito4/sectioner.git",
"https://github.com/alexito4/slox.git",
"https://github.com/alexjohnj/Requests.git",
"https://github.com/alexjohnj/typednotification.git",
"https://github.com/alexruperez/SecurePropertyStorage.git",
"https://github.com/alexruperez/tagging.git",
"https://github.com/algolia/algoliasearch-client-swift.git",
"https://github.com/aliadam/imagewithactivityindicator.git",
"https://github.com/AliSoftware/Dip.git",
"https://github.com/allaboutapps/Fetch.git",
"https://github.com/allegro/swift-junit.git",
"https://github.com/allegro/swiftbox-metrics-statsd.git",
"https://github.com/allegro/swiftbox.git",
"https://github.com/allevato/icu-swift.git",
"https://github.com/alloyapple/goose.git",
"https://github.com/AlTavares/Ciao.git",
"https://github.com/AlTavares/Nappa.git",
"https://github.com/altavares/swiftyshell.git",
"https://github.com/AlwaysRightInstitute/MicroExpress.git",
"https://github.com/AlwaysRightInstitute/Shell.git",
"https://github.com/AlwaysRightInstitute/SwiftEliza.git",
"https://github.com/AlwaysRightInstitute/SwiftObjCBridge.git",
"https://github.com/AlwaysRightInstitute/SwiftyExpat.git",
"https://github.com/AlwaysRightInstitute/WebPackMiniS.git",
"https://github.com/amadeu01/atlas.git",
"https://github.com/amatino-code/amatino-swift.git",
"https://github.com/americanexpress/xcprojectlint.git",
"https://github.com/amine2233/Reactive.git",
"https://github.com/amine2233/Result.git",
"https://github.com/amosavian/AMSMB2.git",
"https://github.com/amosavian/ExtendedAttributes.git",
"https://github.com/amosavian/FileProvider.git",
"https://github.com/amosavian/LocaleManager.git",
"https://github.com/amraboelela/swiftleveldb.git",
"https://github.com/amzn/service-model-swift-code-generate.git",
"https://github.com/amzn/smoke-aws-credentials.git",
"https://github.com/amzn/smoke-aws-generate.git",
"https://github.com/amzn/smoke-aws.git",
"https://github.com/amzn/smoke-dynamodb.git",
"https://github.com/amzn/smoke-framework.git",
"https://github.com/amzn/smoke-http.git",
"https://github.com/andersonlucasg3/Swift.Binary.git",
"https://github.com/AndrewBarba/Bluebird.swift.git",
"https://github.com/AndrewBarba/ed25519.git",
"https://github.com/AndrewBarba/lisk-swift.git",
"https://github.com/andybest/linenoise-swift.git",
"https://github.com/aniket965/argstodict.git",
"https://github.com/aniket965/eraser.git",
"https://github.com/aniket965/eternalflame.git",
"https://github.com/aniket965/treecli.git",
"https://github.com/anthonycastelli/thunder.git",
"https://github.com/antitypical/Result.git",
"https://github.com/antoniocasero/Arrows.git",
"https://github.com/antoniocasero/Panels.git",
"https://github.com/anzfactory/twitterclientcli.git",
"https://github.com/apacheexpress/apacheexpress3.git",
"https://github.com/aphelionapps/swaggerparser.git",
"https://github.com/apleshkov/saber.git",
"https://github.com/apollographql/apollo-ios.git",
"https://github.com/ApolloZhu/srt2bilibilikit.git",
"https://github.com/ApolloZhu/swift_qrcodejs.git",
"https://github.com/apparata/clikit.git",
"https://github.com/apparata/markin.git",
"https://github.com/apparata/rulekit.git",
"https://github.com/appcron/acinteractor.git",
"https://github.com/apple/example-package-dealer.git",
"https://github.com/apple/example-package-deckofplayingcards.git",
"https://github.com/apple/example-package-fisheryates.git",
"https://github.com/apple/example-package-playingcard.git",
"https://github.com/apple/swift-corelibs-xctest.git",
"https://github.com/apple/swift-crypto.git",
"https://github.com/apple/swift-driver.git",
"https://github.com/apple/swift-llbuild.git",
"https://github.com/apple/swift-log.git",
"https://github.com/apple/swift-metrics.git",
"https://github.com/apple/swift-nio-extras.git",
"https://github.com/apple/swift-nio-http2.git",
"https://github.com/apple/swift-nio-ssl.git",
"https://github.com/apple/swift-nio-transport-services.git",
"https://github.com/apple/swift-nio.git",
"https://github.com/apple/swift-numerics.git",
"https://github.com/apple/swift-package-manager.git",
"https://github.com/apple/swift-protobuf.git",
"https://github.com/apple/swift-statsd-client.git",
"https://github.com/apple/swift-syntax.git",
"https://github.com/apple/swift-tools-support-core.git",
"https://github.com/apppear/chartview.git",
"https://github.com/appsaurus/cursorpagination.git",
"https://github.com/appsaurus/fluentseeder.git",
"https://github.com/apptekstudios/ASCollectionView.git",
"https://github.com/armadsen/mypackage.git",
"https://github.com/armadsen/ORSSerialPort.git",
"https://github.com/arn00s/caralho.git",
"https://github.com/arn00s/cariocamenu.git",
"https://github.com/arnecs/mqttkit.git",
"https://github.com/artemkalinovsky/Legatus.git",
"https://github.com/artemnovichkov/carting.git",
"https://github.com/artemnovichkov/fastfood.git",
"https://github.com/artemnovichkov/spasibo.git",
"https://github.com/artman/Signals.git",
"https://github.com/ArtSabintsev/Guitar.git",
"https://github.com/ArtSabintsev/Siren.git",
"https://github.com/asensei/AnyCodable.git",
"https://github.com/asensei/couchbase-cluster-manager.git",
"https://github.com/asensei/Result.git",
"https://github.com/asensei/vapor-auth-jwt.git",
"https://github.com/asensei/vapor-fluent-mongo.git",
"https://github.com/ashfurrow/danger-swiftlint.git",
"https://github.com/ashleymills/Reachability.swift.git",
"https://github.com/askrav/yelpprovider.git",
"https://github.com/asoderman/JSONDecoder.git",
"https://github.com/AsyncNinja/AsyncNinja.git",
"https://github.com/attaswift/BigInt.git",
"https://github.com/attaswift/BTree.git",
"https://github.com/attaswift/Deque.git",
"https://github.com/attaswift/SipHash.git",
"https://github.com/attilathefun/swaggerparser.git",
"https://github.com/autimatisering/AMKit.git",
"https://github.com/autimatisering/IkigaJSON.git",
"https://github.com/autimatisering/SMTPKitten.git",
"https://github.com/autimatisering/VaporSMTPKit.git",
"https://github.com/autobahnswift/shuttle.git",
"https://github.com/automatic/manual.git",
"https://github.com/automatontec/jsonconfig.git",
"https://github.com/autozimu/stringmetric.swift.git",
"https://github.com/aydenp/passencoder.git",
"https://github.com/Azoy/Sword.git",
"https://github.com/Azoy/SwordRPC.git",
"https://github.com/Azure/Azure.iOS.git",
"https://github.com/b3ll/Decomposed.git",
"https://github.com/backslash-f/aescryptable.git",
"https://github.com/backslash-f/operating-system.git",
"https://github.com/backslash-f/simage.git",
"https://github.com/backslash-f/Worker.git",
"https://github.com/badrinathvm/StepperView.git",
"https://github.com/baguio/SwiftUI-IfLet.git",
"https://github.com/Balancingrock/Ascii.git",
"https://github.com/Balancingrock/BRBON.git",
"https://github.com/Balancingrock/BRUtils.git",
"https://github.com/Balancingrock/Http.git",
"https://github.com/Balancingrock/KeyedCache.git",
"https://github.com/Balancingrock/SecureSockets.git",
"https://github.com/Balancingrock/SwifterLog.git",
"https://github.com/Balancingrock/SwifterSockets.git",
"https://github.com/Balancingrock/Swiftfire.git",
"https://github.com/Balancingrock/vjson.git",
"https://github.com/BalestraPatrick/Stryng.git",
"https://github.com/banjun/ReactiveSSE.git",
"https://github.com/bankex/web3swift.git",
"https://github.com/bannzai/eracalculator.git",
"https://github.com/bannzai/kuri.git",
"https://github.com/bannzai/ocha.git",
"https://github.com/bannzai/ragnarok.git",
"https://github.com/bannzai/spmdemo.git",
"https://github.com/bannzai/swdifft.git",
"https://github.com/bannzai/teapot.git",
"https://github.com/bannzai/xcodeproject.git",
"https://github.com/barrault01/firebasehelpers.git",
"https://github.com/BarredEwe/MoyaNetworkClient.git",
"https://github.com/batoulapps/adhan-swift.git",
"https://github.com/bazaarvoice/BVSwift.git",
"https://github.com/bearyinnovative/funcbot.git",
"https://github.com/beatsbears/incrementer.git",
"https://github.com/beatsbears/ipaddress_v4.git",
"https://github.com/behrang/YamlSwift.git",
"https://github.com/BellAppLab/Defines.git",
"https://github.com/BellAppLab/Weakable.git",
"https://github.com/BenchR267/Parsel.git",
"https://github.com/BenchR267/swiftalfred.git",
"https://github.com/BenEmdon/CenteredCollectionView.git",
"https://github.com/bengottlieb/marcel.git",
"https://github.com/bengottlieb/plug.git",
"https://github.com/benjaminmayo/sass-swift.git",
"https://github.com/benspratling4/swiftawss3.git",
"https://github.com/benspratling4/swiftawssignaturev4.git",
"https://github.com/benspratling4/swiftfoundationcompression.git",
"https://github.com/bergusman/evotor.git",
"https://github.com/bermudadigitalstudio/cerberus.git",
"https://github.com/bermudadigitalstudio/redshot.git",
"https://github.com/bermudadigitalstudio/rope.git",
"https://github.com/bermudadigitalstudio/titan.git",
"https://github.com/bermudadigitalstudio/titanloggingswiftybeaver.git",
"https://github.com/Bersaelor/KDTree.git",
"https://github.com/bersaelor/swiftybeagle.git",
"https://github.com/Bersaelor/SwiftyHYGDB.git",
"https://github.com/besarism/SSSSOnboarding.git",
"https://github.com/bgayman/FlipBook.git",
"https://github.com/bgerstle/scout.git",
"https://github.com/bhansconnect/swifttimeit.git",
"https://github.com/BiAtoms/Http.swift.git",
"https://github.com/BiAtoms/Request.swift.git",
"https://github.com/BiAtoms/Socket.swift.git",
"https://github.com/BiAtoms/Xml.swift.git",
"https://github.com/bibinjacobpulickal/AutoLayoutProxy.git",
"https://github.com/bielikb/textattributes.git",
"https://github.com/bielikb/UIViewPreview.git",
"https://github.com/bielikb/UseAutoLayout.git",
"https://github.com/bignerdranch/Deferred.git",
"https://github.com/Bilue/ContentFittingWebView.git",
"https://github.com/binarybirds/git.git",
"https://github.com/binarybirds/sunlight.git",
"https://github.com/binarybirds/testify.git",
"https://github.com/binarybirds/timezones.git",
"https://github.com/bitmark-inc/tweetnacl-swiftwrap.git",
"https://github.com/bitwit/slurp.git",
"https://github.com/bitwit/swift-package-directory.git",
"https://github.com/bizz84/SwiftyStoreKit.git",
"https://github.com/bjtj/swift-upnp-tools.git",
"https://github.com/bkase/doctorpretty.git",
"https://github.com/bloombox/Swift.git",
"https://github.com/bmbowdish/swiftfall.git",
"https://github.com/Boilertalk/BigInt.swift.git",
"https://github.com/Boilertalk/Keystore.swift.git",
"https://github.com/Boilertalk/secp256k1.swift.git",
"https://github.com/Boilertalk/telegrambot.swift.git",
"https://github.com/Boilertalk/vaportelegrambot.git",
"https://github.com/Boilertalk/Web3.swift.git",
"https://github.com/bouke/dns.git",
"https://github.com/bouke/glob.git",
"https://github.com/bouke/hap.git",
"https://github.com/bouke/hkdf.git",
"https://github.com/bouke/ini.git",
"https://github.com/bouke/lark.git",
"https://github.com/bouke/my-home.git",
"https://github.com/bouke/netservice.git",
"https://github.com/bouke/srp.git",
"https://github.com/bourvill/OpenWeatherKit.git",
"https://github.com/bow-swift/bow.git",
"https://github.com/bppr/speck.git",
"https://github.com/bradlarson/gpuimage2.git",
"https://github.com/brainfinance/stackdriverlogging.git",
"https://github.com/brettfazio/CameraView.git",
"https://github.com/bricklife/boostblekit.git",
"https://github.com/bricklife/JSONRPCKit.git",
"https://github.com/brightdigit/AssetLib.git",
"https://github.com/brightdigit/Base32Crockford.git",
"https://github.com/brightdigit/GampKit.git",
"https://github.com/brightdigit/SwiftVer.git",
"https://github.com/Brightify/ReactantUI.git",
"https://github.com/broadwaylamb/gottagofast.git",
"https://github.com/broadwaylamb/OpenCombine.git",
"https://github.com/brokenhandsio/cmark-gfm.git",
"https://github.com/brokenhandsio/leaf-error-middleware.git",
"https://github.com/brokenhandsio/SteamPress.git",
"https://github.com/brokenhandsio/VaporSecurityHeaders.git",
"https://github.com/brutella/log-swift.git",
"https://github.com/brutella/xcollectiondata.git",
"https://github.com/bryannorden/elo-rating-swift.git",
"https://github.com/brycesteve/perfect-view2pdf.git",
"https://github.com/bustoutsolutions/siesta.git",
"https://github.com/buzzfeed/MockDuck.git",
"https://github.com/bwetherfield/pitchspeller.git",
"https://github.com/cafielo/MNISTKit.git",
"https://github.com/calebkleveter/argon2.git",
"https://github.com/capnslipp/NilCoalescingAssignmentOperators.git",
"https://github.com/capnslipp/SCNMathExtensions.git",
"https://github.com/capnslipp/SCNViewController.git",
"https://github.com/capnslipp/Tribool.git",
"https://github.com/captainyukinoshitahachiman/perfectslackapiclient.git",
"https://github.com/carekit-apple/carekit.git",
"https://github.com/carson-katri/attributedstringbuilder.git",
"https://github.com/carson-katri/swift-request.git",
"https://github.com/carthage/carthage.git",
"https://github.com/Carthage/Commandant.git",
"https://github.com/cats-oss/cujira.git",
"https://github.com/cats-oss/Degu.git",
"https://github.com/cats-oss/ExtensionProperty.git",
"https://github.com/cats-oss/grpc-swift-client.git",
"https://github.com/cats-oss/Sica.git",
"https://github.com/Cay-Zhang/SwiftSpeech.git",
"https://github.com/cbguder/CBGPromise.git",
"https://github.com/cellular/cellular-swift.git",
"https://github.com/cfilipov/texttable.git",
"https://github.com/cgarciae/ndarray.git",
"https://github.com/cgarciae/stream.git",
"https://github.com/chameleonbot/chameleon.git",
"https://github.com/Chandlerdea/HTTPKit.git",
"https://github.com/ChargePoint/xcparse.git",
"https://github.com/CharlesJS/CSAuthSample.git",
"https://github.com/CharlesJS/CSCodeSignature.git",
"https://github.com/CharlesJS/CSErrors.git",
"https://github.com/CharlesJS/CSProgress.git",
"https://github.com/che1404/vipergen.git",
"https://github.com/checkout/frames-ios.git",
"https://github.com/chicio/ID3TagEditor.git",
"https://github.com/ChimeHQ/Dusk.git",
"https://github.com/ChimeHQ/NicerTouchBar.git",
"https://github.com/ChimeHQ/OperationPlus.git",
"https://github.com/ChimeHQ/Rearrange.git",
"https://github.com/ChimeHQ/SwiftLSPClient.git",
"https://github.com/ChimeHQ/WindowTreatment.git",
"https://github.com/ChouTi-Lab/ChouTi.git",
"https://github.com/chrisaljoudi/swift-log-oslog.git",
"https://github.com/chrisamanse/QRSwift.git",
"https://github.com/chrisbkarani/Sukari.git",
"https://github.com/chriseidhof/commonmark-swift.git",
"https://github.com/chrisladd/DashDashSwift.git",
"https://github.com/christiankm/FinanceKit.git",
"https://github.com/chrs1885/Capable.git",
"https://github.com/chylis/swiftilities.git",
"https://github.com/ckanchan/CDKOraccInterface.git",
"https://github.com/ckanchan/CDKSwiftOracc.git",
"https://github.com/Clafou/DevicePpi.git",
"https://github.com/cloudant/swift-cloudant.git",
"https://github.com/cloutiertyler/base58string.git",
"https://github.com/cmtrounce/SwURL.git",
"https://github.com/code28/vapor-gorush.git",
"https://github.com/codeeagle/combineex.git",
"https://github.com/codeeagle/rocketboot.git",
"https://github.com/codewinsdotcom/PostgresClientKit.git",
"https://github.com/Coeur/CollectionViewCenteredFlowLayout.git",
"https://github.com/coinbase/coinbase-ios-sdk.git",
"https://github.com/coinpaprika/changelly-api-swift-client.git",
"https://github.com/coinpaprika/coinpaprika-api-swift-client.git",
"https://github.com/coinpaprika/coinswitch-api-swift-client.git",
"https://github.com/collinhundley/jwt.git",
"https://github.com/CombineCommunity/CombineExt.git",
"https://github.com/CombineCommunity/CombineRealm.git",
"https://github.com/CombineHarvesters/AVFoundationCombine.git",
"https://github.com/CombineHarvesters/CombineTesting.git",
"https://github.com/CombineHarvesters/FoundationCombine.git",
"https://github.com/CombineHarvesters/HealthKitCombine.git",
"https://github.com/combineopensource/combinedatasources.git",
"https://github.com/combineopensource/combineprintout.git",
"https://github.com/commercetools/commercetools-ios-sdk.git",
"https://github.com/composed-swift/composed.git",
"https://github.com/composed-swift/composedui.git",
"https://github.com/contentful/contentful-persistence.swift.git",
"https://github.com/contentful/contentful.swift.git",
"https://github.com/coodly/talktocloud.git",
"https://github.com/coopercorona/voronoi.git",
"https://github.com/corekit/vipera.git",
"https://github.com/CoreOffice/CryptoOffice.git",
"https://github.com/CoreOffice/OLEKit.git",
"https://github.com/Cosmo/HackMan.git",
"https://github.com/cosmo/iso8859.git",
"https://github.com/Cosmo/Nodes.git",
"https://github.com/couriere/uiextensions.git",
"https://github.com/cpageler93/consulswift.git",
"https://github.com/cpageler93/jiraswift.git",
"https://github.com/cpageler93/quack.git",
"https://github.com/cpageler93/swiftyhawk.git",
"https://github.com/cqxfly/qxtcpserver_vapor.git",
"https://github.com/creekpld/romanize.git",
"https://github.com/crelies/advancedlist.git",
"https://github.com/crelies/json-dsl.git",
"https://github.com/crelies/ListPagination.git",
"https://github.com/crelies/media.git",
"https://github.com/crelies/remoteimage.git",
"https://github.com/crelies/uikit-modifiers.git",
"https://github.com/cremo-music/notus.git",
"https://github.com/cristik/Suture.git",
"https://github.com/crossroadlabs/Regex.git",
"https://github.com/crspybits/CredentialsDropbox.git",
"https://github.com/crspybits/CredentialsMicrosoft.git",
"https://github.com/crspybits/SwiftyAWSSNS.git",
"https://github.com/cszatma/DiscreteMathematics.git",
"https://github.com/cszatma/SwiftySweetness.git",
"https://github.com/cuba/mongoorm.git",
"https://github.com/CUITCHE/UserCaches.git",
"https://github.com/cxa/MenuItemKit.git",
"https://github.com/cxa/Piz.git",
"https://github.com/cxa/XPaver.git",
"https://github.com/cyberbeni/typednotificationcenter.git",
"https://github.com/CypherPoet/AnimatableGradients.git",
"https://github.com/CypherPoet/CypherPoetNetStack.git",
"https://github.com/CypherPoet/SwiftUIPolygon.git",
"https://github.com/dadalar/SwiftUI-CardStackView.git",
"https://github.com/daltonclaybrook/apispec.git",
"https://github.com/daltoniam/Starscream.git",
"https://github.com/danger/danger-swift.git",
"https://github.com/danger/swift.git",
"https://github.com/daniel-grumberg/codablexpc.git",
"https://github.com/danielgindi/Charts.git",
"https://github.com/danielr/Mokka.git",
"https://github.com/dankogai/swift-bignum.git",
"https://github.com/dankogai/swift-combinatorics.git",
"https://github.com/dankogai/swift-complex.git",
"https://github.com/dankogai/swift-int2x.git",
"https://github.com/dankogai/swift-interval.git",
"https://github.com/dankogai/swift-json.git",
"https://github.com/dankogai/swift-sion.git",
"https://github.com/dankogai/swift-tap.git",
"https://github.com/darjeelingsteve/hopoate.git",
"https://github.com/Darkngs/DECardNumberFormatter.git",
"https://github.com/Darkngs/DEPhoneNumberFormatter.git",
"https://github.com/DarkySwift/KangarooStore.git",
"https://github.com/DarthStrom/Moxie.git",
"https://github.com/dastrobu/argtree.git",
"https://github.com/dastrobu/geodesic.git",
"https://github.com/dastrobu/vincenty.git",
"https://github.com/davbeck/MultipartForm.git",
"https://github.com/davbeck/PersistentCacheKit.git",
"https://github.com/davdroman/badonde.git",
"https://github.com/davdroman/rehatch.git",
"https://github.com/davecom/SwiftCSP.git",
"https://github.com/davecom/SwiftGraph.git",
"https://github.com/davecom/SwiftPriorityQueue.git",
"https://github.com/davedelong/DDMathParser.git",
"https://github.com/davedelong/time.git",
"https://github.com/davedufresne/SwiftParsec.git",
"https://github.com/DaveWoodCom/XCGLogger.git",
"https://github.com/davidahouse/xcresultkit.git",
"https://github.com/davidlivadaru/DLAngle.git",
"https://github.com/davidlivadaru/DLCoreGraphics.git",
"https://github.com/davidlivadaru/DLInterval.git",
"https://github.com/davidlivadaru/DLSuggestionsTextField.git",
"https://github.com/davidrpiper/timely.git",
"https://github.com/davidskrundz/commandline.git",
"https://github.com/davidskrundz/hash.git",
"https://github.com/davidskrundz/math.git",
"https://github.com/davidskrundz/regex.git",
"https://github.com/davidstump/SwiftPhoenixClient.git",
"https://github.com/dchakarov/TrainInformationService.git",
"https://github.com/dcutting/syft.git",
"https://github.com/ddddxxx/Semver.git",
"https://github.com/dduan/BitArray.git",
"https://github.com/dduan/comprehension.git",
"https://github.com/dduan/Pathos.git",
"https://github.com/dduan/terminalpaint.git",
"https://github.com/Dean151/ImageUtility.git",
"https://github.com/Dean151/RecordingOverlay.git",
"https://github.com/declarativehub/bond.git",
"https://github.com/DeclarativeHub/ReactiveKit.git",
"https://github.com/decryptos/levenshtein.git",
"https://github.com/dehesa/CodableCSV.git",
"https://github.com/dehesa/Conbini.git",
"https://github.com/demianturner/DTOnboarding.git",
"https://github.com/DenTelezhkin/Ariadne.git",
"https://github.com/DenTelezhkin/DTCollectionViewManager.git",
"https://github.com/DenTelezhkin/DTModelStorage.git",
"https://github.com/DenTelezhkin/DTTableViewManager.git",
"https://github.com/designatednerd/plister.git",
"https://github.com/detroit-labs/BottomSheetPresentation.git",
"https://github.com/dev1an/a-star.git",
"https://github.com/dev1an/swift-atem.git",
"https://github.com/devandsev/JustSignals.git",
"https://github.com/devandsev/TapticKit.git",
"https://github.com/devandsev/YoutubeDirectLinkExtractor.git",
"https://github.com/devedbox/commander.git",
"https://github.com/devedbox/git-commit.git",
"https://github.com/developerinsider/spmdeveloperinsider.git",
"https://github.com/devicekit/DeviceKit.git",
"https://github.com/devxoul/AlertReactor.git",
"https://github.com/devxoul/Carte.git",
"https://github.com/devxoul/CGFloatLiteral.git",
"https://github.com/devxoul/Immutable.git",
"https://github.com/devxoul/MoyaSugar.git",
"https://github.com/devxoul/Pure.git",
"https://github.com/devxoul/ReusableKit.git",
"https://github.com/devxoul/RxCodable.git",
"https://github.com/devxoul/RxExpect.git",
"https://github.com/devxoul/RxJSON.git",
"https://github.com/devxoul/RxViewController.git",
"https://github.com/devxoul/SafeCollection.git",
"https://github.com/devxoul/SectionReactor.git",
"https://github.com/devxoul/Stubber.git",
"https://github.com/devxoul/Then.git",
"https://github.com/devxoul/UICollectionViewFlexLayout.git",
"https://github.com/devxoul/Umbrella.git",
"https://github.com/devxoul/URLNavigator.git",
"https://github.com/dfed/XCTest-watchOS.git",
"https://github.com/dfunckt/swift-futures.git",
"https://github.com/dhardiman/config.git",
"https://github.com/dhardiman/fetch.git",
"https://github.com/dhardiman/router.git",
"https://github.com/dhardiman/spot.git",
"https://github.com/diejmon/fetchedresultspublisher.git",
"https://github.com/diejmon/smosquitto.git",
"https://github.com/Digipolitan/alamofire-logging.git",
"https://github.com/Digipolitan/dependency-injector-object-mapper.git",
"https://github.com/Digipolitan/dependency-injector.git",
"https://github.com/Digipolitan/framework-swift-template.git",
"https://github.com/Digipolitan/idylle-client-swift.git",
"https://github.com/Digipolitan/localization-toolkit-object-mapper.git",
"https://github.com/Digipolitan/localization-toolkit.git",
"https://github.com/Digipolitan/runtime-environment.git",
"https://github.com/Digipolitan/session-kit.git",
"https://github.com/dimakura/sspec.git",
"https://github.com/dimillian/swiftuiflux.git",
"https://github.com/dimpiax/StyleDecorator.git",
"https://github.com/DingSoung/Extension.git",
"https://github.com/dingsoung/network.git",
"https://github.com/dingwilson/MultiPeer.git",
"https://github.com/dingwilson/XMLParsing.git",
"https://github.com/DirectToSwift/CoreDataToSwiftUI.git",
"https://github.com/DirectToSwift/DirectToSwiftUI.git",
"https://github.com/DirectToSwift/SwiftUIRules.git",
"https://github.com/DiUS/pact-consumer-swift.git",
"https://github.com/dlvm-team/coretensor.git",
"https://github.com/dlvm-team/dlvm-core.git",
"https://github.com/dmcyk/easyapns.git",
"https://github.com/dmcyk/swiftycurl.git",
"https://github.com/dmonagle/elasticsearch-vapor.git",
"https://github.com/dmulholl/janus-swift.git",
"https://github.com/dmytro-anokhin/core-data-model-description.git",
"https://github.com/dmytro-anokhin/url-image.git",
"https://github.com/dn-m/notationmodel.git",
"https://github.com/dn-m/notationview.git",
"https://github.com/dn-m/performancetesting.git",
"https://github.com/dn-m/structure.git",
"https://github.com/docopt/docopt.swift.git",
"https://github.com/dokun1/openwhisk-swift-sdk.git",
"https://github.com/dokun1/vaux.git",
"https://github.com/domcorvasce/decamelize.git",
"https://github.com/dominicegginton/spinner.git",
"https://github.com/dougzilla32/CancelForPromiseKit.git",
"https://github.com/dparnell/swift-parser-generator.git",
"https://github.com/dral3x/stringslint.git",
"https://github.com/drewag/Decree.git",
"https://github.com/drewag/DecreeServices.git",
"https://github.com/drewag/swiftlier.git",
"https://github.com/drewag/SwiftlierCLI.git",
"https://github.com/drewag/SwiftlierUIKit.git",
"https://github.com/dreymonde/AppFolder.git",
"https://github.com/dreymonde/Delegated.git",
"https://github.com/dreymonde/light.git",
"https://github.com/dreymonde/Shallows.git",
"https://github.com/dreymonde/sofarkit.git",
"https://github.com/dreymonde/Time.git",
"https://github.com/drichardson/SwiftyBase64.git",
"https://github.com/drmohundro/SWXMLHash.git",
"https://github.com/dtaylor1701/xcsnippets.git",
"https://github.com/duemunk/async.git",
"https://github.com/DuetHealth/Bedrock.git",
"https://github.com/DuetHealth/DrX.git",
"https://github.com/e-sites/Cobalt.git",
"https://github.com/e-sites/Dysprosium.git",
"https://github.com/e-sites/Einsteinium.git",
"https://github.com/e-sites/Erbium.git",
"https://github.com/e-sites/Francium.git",
"https://github.com/e-sites/Lithium.git",
"https://github.com/e-sites/Natrium.git",
"https://github.com/e-sites/Radon.git",
"https://github.com/e-sixt/swack.git",
"https://github.com/eBardX/XestiMonitors.git",
"https://github.com/edwellbrook/Themeable.git",
"https://github.com/eecollante10/sourceeditor.git",
"https://github.com/eelcokoelewijn/audiokit.git",
"https://github.com/efekanegeli/EEStackLayout.git",
"https://github.com/egeniq/BetterSheet.git",
"https://github.com/egeniq/InjectPropertyWrapper.git",
"https://github.com/einstore/einstorecore.git",
"https://github.com/einstore/githubkit.git",
"https://github.com/einstore/nioerrorkit.git",
"https://github.com/einstore/shellkit.git",
"https://github.com/einstore/systemator.git",
"https://github.com/einstore/templator.git",
"https://github.com/einstore/vaporerrorkit.git",
"https://github.com/elegantchaos/Actions.git",
"https://github.com/elegantchaos/ActionsKit.git",
"https://github.com/elegantchaos/Arguments.git",
"https://github.com/elegantchaos/Builder.git",
"https://github.com/elegantchaos/CommandShell.git",
"https://github.com/elegantchaos/Coverage.git",
"https://github.com/elegantchaos/Datastore.git",
"https://github.com/elegantchaos/DictionaryCoding.git",
"https://github.com/elegantchaos/docopt.swift.git",
"https://github.com/elegantchaos/Expressions.git",
"https://github.com/elegantchaos/JSONDump.git",
"https://github.com/elegantchaos/Localization.git",
"https://github.com/elegantchaos/Logger.git",
"https://github.com/elegantchaos/Runner.git",
"https://github.com/elegantchaos/SketchX.git",
"https://github.com/elegantchaos/TokenView.git",
"https://github.com/elegantchaos/Xpkg.git",
"https://github.com/elegantchaos/XpkgPackage.git",
"https://github.com/ellneal/swift-promise.git",
"https://github.com/emaloney/cleanroomdatatransactions.git",
"https://github.com/emaloney/cleanroomlogger.git",
"https://github.com/eman6576/SGCircuitBreaker.git",
"https://github.com/eman6576/SGSwiftyBind.git",
"https://github.com/emorydunn/launchagent.git",
"https://github.com/emqx/CocoaMQTT.git",
"https://github.com/eneko/CommandRegistry.git",
"https://github.com/eneko/github.git",
"https://github.com/eneko/MarkdownGenerator.git",
"https://github.com/eneko/regex.git",
"https://github.com/eneko/sourcedocs.git",
"https://github.com/eneko/System.git",
"https://github.com/enums/calatrava.git",
"https://github.com/enums/pjango.git",
"https://github.com/envoy/Ambassador.git",
"https://github.com/envoy/Embassy.git",
"https://github.com/ericlewis/ActivityIndicatorView.git",
"https://github.com/ericlewis/BlurView.git",
"https://github.com/ericlewis/ProgressView.git",
"https://github.com/ericlewis/THOTP.git",
"https://github.com/ericlewis/URL-QueryItem.git",
"https://github.com/ericlewis/Valet-THOTP.git",
"https://github.com/erikstrottmann/Rations.git",
"https://github.com/erusaevap/DStack.git",
"https://github.com/ethanhuang13/NSAttributedStringBuilder.git",
"https://github.com/ether-cli/ether.git",
"https://github.com/EtneteraMobile/ETBinding.git",
"https://github.com/evgenyneu/keychain-swift.git",
"https://github.com/evgenyneu/SigmaSwiftStatistics.git",
"https://github.com/evilgix/Evil.git",
"https://github.com/evolution-app/zeromqswift.git",
"https://github.com/exceptionalprogramming/xp-swift.git",
"https://github.com/exyte/macaw.git",
"https://github.com/ezura/spell-checker-for-swift.git",
"https://github.com/f-meloni/danger-swift-coverage.git",
"https://github.com/f-meloni/danger-swift-prose.git",
"https://github.com/f-meloni/danger-swift-xcodesummary.git",
"https://github.com/f-meloni/rocket.git",
"https://github.com/f-meloni/TestSpy.git",
"https://github.com/fabianfett/pure-swift-json.git",
"https://github.com/fabianfett/swift-app-store-receipt-validation.git",
"https://github.com/fabianfett/swift-base64-kit.git",
"https://github.com/fabianfett/swift-lambda-runtime.git",
"https://github.com/fabianfett/vapor-lambda-runtime.git",
"https://github.com/fabiorodella/FreeformJSON.git",
"https://github.com/FabioTacke/PubliclyVerifiableSecretSharing.git",
"https://github.com/FabioTacke/RingSig.git",
"https://github.com/FabrizioBrancati/BFKit-Swift.git",
"https://github.com/FabrizioBrancati/Queuer.git",
"https://github.com/facebook/facebook-ios-sdk.git",
"https://github.com/fanpyi/UICollectionViewLeftAlignedLayout-Swift.git",
"https://github.com/fassko/MeteoLVProvider.git",
"https://github.com/fassko/TartuWeatherProvider.git",
"https://github.com/favret/poutoupush.git",
"https://github.com/fborges/environmentalism.git",
"https://github.com/fcanas/hlscore.git",
"https://github.com/fernandodelrio/swiftcolorgenlibrary.git",
"https://github.com/ferranabello/Viperit.git",
"https://github.com/fethica/FRadioPlayer.git",
"https://github.com/ffried/fffoundation.git",
"https://github.com/filiplazov/CornerStacks.git",
"https://github.com/finestructure/Arena.git",
"https://github.com/finestructure/Gala.git",
"https://github.com/finestructure/Rester.git",
"https://github.com/finestructure/ValueCodable.git",
"https://github.com/fireblade-engine/ecs.git",
"https://github.com/FitnessKit/AntMessageProtocol.git",
"https://github.com/fitnesskit/asyncnetwork.git",
"https://github.com/FitnessKit/BluetoothMessageProtocol.git",
"https://github.com/FitnessKit/DataDecoder.git",
"https://github.com/FitnessKit/FitDataProtocol.git",
"https://github.com/FitnessKit/FitnessUnits.git",
"https://github.com/FitnessKit/TcxDataProtocol.git",
"https://github.com/Fitzafful/BillboardSwiftLibrary.git",
"https://github.com/fivegoodfriends/ConfigCop.git",
"https://github.com/fjcaetano/RxWebSocket.git",
"https://github.com/flight-school/anycodable.git",
"https://github.com/flight-school/currencyconverter.git",
"https://github.com/flight-school/floatingpointapproximation.git",
"https://github.com/flight-school/jsonfeed.git",
"https://github.com/flight-school/messagepack.git",
"https://github.com/flight-school/money.git",
"https://github.com/flight-school/rate.git",
"https://github.com/flight-school/regularexpressiondecoder.git",
"https://github.com/flight-school/swiftantlr4.git",
"https://github.com/Flinesoft/AnyLint.git",
"https://github.com/Flinesoft/BartyCrouch.git",
"https://github.com/Flinesoft/CSVImporter.git",
"https://github.com/Flinesoft/HandySwift.git",
"https://github.com/Flinesoft/HandyUIKit.git",
"https://github.com/Flinesoft/Microya.git",
"https://github.com/flintbox/ansiescapecode.git",
"https://github.com/flintbox/bouncer.git",
"https://github.com/flintbox/flint.git",
"https://github.com/flintbox/motor.git",
"https://github.com/flintbox/work.git",
"https://github.com/flipside5/sos.git",
"https://github.com/florianreinhart/geodesy.git",
"https://github.com/flowtoolz/SwiftObserver.git",
"https://github.com/flowtoolz/SwiftyToolz.git",
"https://github.com/FluuxIO/XMPP.git",
"https://github.com/flx/lsm303.git",
"https://github.com/foffer/PwnedPasswords.git",
"https://github.com/FormatterKit/DayPeriodFormatter.git",
"https://github.com/formbound/futures.git",
"https://github.com/foulkesjohn/betswift.git",
"https://github.com/foulkesjohn/csvencoder.git",
"https://github.com/franklefebvre/xmlcoder.git",
"https://github.com/frazer-rbsn/swiftargs.git",
"https://github.com/freak4pc/CombineCocoa.git",
"https://github.com/freshos/router.git",
"https://github.com/freshOS/then.git",
"https://github.com/frizlab/bsonserialization.git",
"https://github.com/frizlab/simplestream.git",
"https://github.com/frizlab/ubjsonserialization.git",
"https://github.com/frogcjn/imageioplus.git",
"https://github.com/fromkk/colorset.git",
"https://github.com/fromkk/hashkit.git",
"https://github.com/fromkk/lunch.git",
"https://github.com/Frugghi/SwiftLCS.git",
"https://github.com/fschwehn/vapor-rest-client.git",
"https://github.com/fumoboy007/DisjointSet.git",
"https://github.com/fumoboy007/UniversalCharsetDetection.git",
"https://github.com/futuredapp/CellKit.git",
"https://github.com/futuredapp/FTAPIKit.git",
"https://github.com/futuredapp/FTTestingKit.git",
"https://github.com/futuredapp/FuntastyKit.git",
"https://github.com/fxm90/GradientLoadingBar.git",
"https://github.com/fxm90/GradientProgressBar.git",
"https://github.com/fxm90/LightweightObservable.git",
"https://github.com/Fyrts/Multipart.git",
"https://github.com/g-off/stringray.git",
"https://github.com/g-off/xcodeproject.git",
"https://github.com/gabrielnica/pythonbridge.git",
"https://github.com/gabrielnica/swiftheroprotocol.git",
"https://github.com/galtsoft/kitura-manager.git",
"https://github.com/gamesmash/typeswift.git",
"https://github.com/garriguv/SQLiteMigrationManager.swift.git",
"https://github.com/gavrilaf/seagull.git",
"https://github.com/gavrilaf/sgrouter.git",
"https://github.com/gcharita/CodableProperty.git",
"https://github.com/gcharita/XMLMapper.git",
"https://github.com/generallyhelpfulsoftware/scalar2d.git",
"https://github.com/genius/future.git",
"https://github.com/GEOSwift/GEOSwift.git",
"https://github.com/getGuaka/Args.git",
"https://github.com/getGuaka/Colorizer.git",
"https://github.com/getGuaka/FileUtils.git",
"https://github.com/getGuaka/Prompt.git",
"https://github.com/getGuaka/Regex.git",
"https://github.com/getGuaka/Run.git",
"https://github.com/getGuaka/StringScanner.git",
"https://github.com/GetStream/stream-swift.git",
"https://github.com/GettEngineering/Prism.git",
"https://github.com/gg-a/gislib.git",
"https://github.com/ggruen/swiftnetrc.git",
"https://github.com/ghv/SVMPrefs.git",
"https://github.com/giginet/Crossroad.git",
"https://github.com/giginet/RxSpriteKit.git",
"https://github.com/giginet/toybox.git",
"https://github.com/giginet/wormhole.git",
"https://github.com/gitvalue/Navigation.git",
"https://github.com/gitvalue/Pooling.git",
"https://github.com/gitvalue/RollView.git",
"https://github.com/givip/telegrammer.git",
"https://github.com/gjeck/PathTemplate.swift.git",
"https://github.com/glennschmidt/swift-lifx.git",
"https://github.com/glessard/deferred.git",
"https://github.com/glessard/shuffle.git",
"https://github.com/glessard/swift-atomics.git",
"https://github.com/glessard/swift-reactive-streams.git",
"https://github.com/gmosx/swift-common.git",
"https://github.com/gnosis/bivrost-swift.git",
"https://github.com/gobetti/RxCocoaNetworking.git",
"https://github.com/gonzalezreal/DefaultCodable.git",
"https://github.com/gonzalezreal/Markup.git",
"https://github.com/gonzalezreal/Reusable.git",
"https://github.com/gonzalezreal/SimpleNetworking.git",
"https://github.com/gonzalezreal/UnifiedLogging.git",
"https://github.com/google/open-location-code-swift.git",
"https://github.com/google/promises.git",
"https://github.com/googleapis/google-auth-library-swift.git",
"https://github.com/gotranseo/vapor-recaptcha.git",
"https://github.com/gperdomor/storage-kit.git",
"https://github.com/GraphQLSwift/Graphiti.git",
"https://github.com/GraphQLSwift/GraphQL.git",
"https://github.com/graycampbell/GCCountryPicker.git",
"https://github.com/gringoireDM/EnumKit.git",
"https://github.com/gringoireDM/RxEnumKit.git",
"https://github.com/groue/CombineExpectations.git",
"https://github.com/groue/GRDB.swift.git",
"https://github.com/groue/GRDBCombine.git",
"https://github.com/groue/GRMustache.swift.git",
"https://github.com/GroupeMINASTE/APIRequest.swift.git",
"https://github.com/GroupeMINASTE/Keychain.swift.git",
"https://github.com/grpc/grpc-swift.git",
"https://github.com/gscalzo/SwiftCubicSpline.git",
"https://github.com/gspd-mobi/rage-ios.git",
"https://github.com/gtaban/jwktransform.git",
"https://github.com/guseducampos/JustNetworking.git",
"https://github.com/gwynne/iniserialization.git",
"https://github.com/h2glab/gitlab-provider.git",
"https://github.com/hackiftekhar/IQKeyboardManager.git",
"https://github.com/haekelmeister/MacAddress.git",
"https://github.com/halcyonmobile/ReleaseRadar.git",
"https://github.com/halcyonmobile/RestBird.git",
"https://github.com/hallee/dotfiles.git",
"https://github.com/hallee/micro-playground-provider.git",
"https://github.com/hallee/neumorphic-style.git",
"https://github.com/hallee/simple-haptics.git",
"https://github.com/hallee/swift-smart-quotes.git",
"https://github.com/hallee/vapor-simple-file-logger.git",
"https://github.com/hamishknight/json-fragment-decoding.git",
"https://github.com/handsomecode/unitybuildkit.git",
"https://github.com/hanjoes/swift-termina.git",
"https://github.com/hanjoes/termbo.git",
"https://github.com/happiness9721/line-bot-sdk-swift.git",
"https://github.com/happn-tech/asyncoperationresult.git",
"https://github.com/happn-tech/BMO.git",
"https://github.com/happn-tech/CollectionLoader.git",
"https://github.com/happn-tech/dummylinuxoslog.git",
"https://github.com/happn-tech/KVObserver.git",
"https://github.com/happn-tech/RecursiveSyncDispatch.git",
"https://github.com/happn-tech/RetryingOperation.git",
"https://github.com/happn-tech/SemiSingleton.git",
"https://github.com/happn-tech/URLRequestOperation.git",
"https://github.com/hartbit/Yaap.git",
"https://github.com/healthtap/dangerxcodestaticanalyzer.git",
"https://github.com/hebertialmeida/modelgen.git",
"https://github.com/hectr/swift-elementary-cycles.git",
"https://github.com/hectr/swift-idioms.git",
"https://github.com/hectr/swift-regex.git",
"https://github.com/hectr/swift-shell-interface.git",
"https://github.com/hectr/swift-stream-reader.git",
"https://github.com/hedviginsurance/swiftgraphqlserver.git",
"https://github.com/helje5/Highlightr.git",
"https://github.com/hendriku/colorpicker.git",
"https://github.com/HeroTransitions/Hero.git",
"https://github.com/heshammegid/synchronousnetworking.git",
"https://github.com/hexaville/hexavilleauth.git",
"https://github.com/hexedbits/AboutThisApp.git",
"https://github.com/hexedbits/StatusItemController.git",
"https://github.com/heyzooi/IPData.git",
"https://github.com/hideyuki-machida/metalcanvas.git",
"https://github.com/highmobility/hm-auto-api-swift.git",
"https://github.com/hironytic/Eventitic.git",
"https://github.com/hirotakan/MessagePacker.git",
"https://github.com/hjianbo/mqtt.git",
"https://github.com/hjuraev/nats-swift.git",
"https://github.com/hjuraev/vapornotifications.git",
"https://github.com/hkellaway/Gloss.git",
"https://github.com/hmlongco/RxSwiftForms.git",
"https://github.com/holiday-jp/holiday_jp-swift.git",
"https://github.com/honeycombio/LibHoney-Cocoa.git",
"https://github.com/honghaoz/Ji.git",
"https://github.com/hooliooo/Astral.git",
"https://github.com/hooliooo/BFAstral.git",
"https://github.com/hootsuite/emit.git",
"https://github.com/htwdd/emeal-server.git",
"https://github.com/huri000/SwiftEntryKit.git",
"https://github.com/huynguyen-n/GhostTyping.git",
"https://github.com/hyerra/OpenAQKit.git",
"https://github.com/hyperhooks/hyperswift.git",
"https://github.com/hyperoslo/Cache.git",
"https://github.com/hyugit/EllipticCurve.git",
"https://github.com/iainsmith/swift-docker.git",
"https://github.com/iainsmith/swiftgherkin.git",
"https://github.com/iainsmith/travisClient.git",
"https://github.com/iamjono/codablerequest.git",
"https://github.com/iamjono/jsonconfig.git",
"https://github.com/iamjono/twilioswift.git",
"https://github.com/iAmrSalman/Dots.git",
"https://github.com/iAmrSalman/StorageManager.git",
"https://github.com/ianpartridge/swift-backtrace.git",
"https://github.com/ianpartridge/swift-log-syslog.git",
"https://github.com/IBAnimatable/IBAnimatable.git",
"https://github.com/ibdecodable/danger-iblinter.git",
"https://github.com/IBDecodable/IBDecodable.git",
"https://github.com/IBDecodable/IBGraph.git",
"https://github.com/IBDecodable/IBLinter.git",
"https://github.com/ibm-bluemix-mobile-services/bluemix-simple-http-client-swift.git",
"https://github.com/ibm-bluemix-mobile-services/bluemix-simple-logger-swift.git",
"https://github.com/ibm-bluemix-mobile-services/bms-pushnotifications-serversdk-swift.git",
"https://github.com/ibm-cloud-security/appid-serversdk-swift.git",
"https://github.com/ibm-cloud-security/swift-jwk-to-pem.git",
"https://github.com/IBM-Swift/alert-notification-sdk.git",
"https://github.com/IBM-Swift/BlueCryptor.git",
"https://github.com/IBM-Swift/BlueRSA.git",
"https://github.com/IBM-Swift/BlueSignals.git",
"https://github.com/IBM-Swift/BlueSocket.git",
"https://github.com/IBM-Swift/BlueSSLService.git",
"https://github.com/IBM-Swift/cepoll.git",
"https://github.com/IBM-Swift/CircuitBreaker.git",
"https://github.com/IBM-Swift/cloudenvironment.git",
"https://github.com/IBM-Swift/czlib.git",
"https://github.com/IBM-Swift/filekit.git",
"https://github.com/IBM-Swift/health.git",
"https://github.com/IBM-Swift/heliumlogger.git",
"https://github.com/IBM-Swift/kitura-cache.git",
"https://github.com/IBM-Swift/kitura-compression.git",
"https://github.com/IBM-Swift/kitura-cors.git",
"https://github.com/IBM-Swift/kitura-couchdb.git",
"https://github.com/IBM-Swift/Kitura-Credentials.git",
"https://github.com/IBM-Swift/Kitura-CredentialsFacebook.git",
"https://github.com/IBM-Swift/Kitura-CredentialsGithub.git",
"https://github.com/IBM-Swift/Kitura-CredentialsGoogle.git",
"https://github.com/IBM-Swift/Kitura-CredentialsHTTP.git",
"https://github.com/IBM-Swift/Kitura-CredentialsJWT.git",
"https://github.com/IBM-Swift/kitura-markdown.git",
"https://github.com/IBM-Swift/kitura-mustachetemplateengine.git",
"https://github.com/IBM-Swift/Kitura-net.git",
"https://github.com/IBM-Swift/kitura-nio.git",
"https://github.com/IBM-Swift/kitura-openapi.git",
"https://github.com/IBM-Swift/kitura-redis.git",
"https://github.com/IBM-Swift/kitura-session-redis.git",
"https://github.com/IBM-Swift/kitura-session.git",
"https://github.com/IBM-Swift/kitura-stenciltemplateengine.git",
"https://github.com/IBM-Swift/kitura-templateengine.git",
"https://github.com/IBM-Swift/kitura-websocket-nio.git",
"https://github.com/IBM-Swift/kitura-websocket.git",
"https://github.com/IBM-Swift/Kitura.git",
"https://github.com/IBM-Swift/KituraContracts.git",
"https://github.com/IBM-Swift/KituraKit.git",
"https://github.com/IBM-Swift/LoggerAPI.git",
"https://github.com/IBM-Swift/swift-cfenv.git",
"https://github.com/IBM-Swift/swift-html-entities.git",
"https://github.com/IBM-Swift/Swift-JWT.git",
"https://github.com/IBM-Swift/Swift-Kuery-ORM.git",
"https://github.com/IBM-Swift/Swift-Kuery-PostgreSQL.git",
"https://github.com/IBM-Swift/Swift-Kuery-SQLite.git",
"https://github.com/IBM-Swift/Swift-Kuery.git",
"https://github.com/IBM-Swift/swift-smtp.git",
"https://github.com/IBM-Swift/swiftkafka.git",
"https://github.com/IBM-Swift/SwiftKueryMySQL.git",
"https://github.com/IBM-Swift/SwiftyRequest.git",
"https://github.com/IBM-Swift/typedecoder.git",
"https://github.com/icapps/ios-stella.git",
"https://github.com/iCell/CryptoCurrency.git",
"https://github.com/igor-makarov/BeaconKit.git",
"https://github.com/Igor-Palaguta/MotoSwift.git",
"https://github.com/igormuzyka/phase.git",
"https://github.com/ikesyo/Himotoki.git",
"https://github.com/ikhsan/datastructure.git",
"https://github.com/ikhvorost/PromiseQ.git",
"https://github.com/Ikiga/IkigaJSON.git",
"https://github.com/ilyapuchka/SwiftNIOMock.git",
"https://github.com/ilyapuchka/URLFormat.git",
"https://github.com/imac0de/perfect-fcm-server.git",
"https://github.com/imbue11235/EventHub.git",
"https://github.com/imcd23/ibuild.git",
"https://github.com/inamiy/rxproperty.git",
"https://github.com/inamiy/swiftrewriter.git",
"https://github.com/IngmarStein/SMJobKit.git",
"https://github.com/innocarpe/TabNavigable.git",
"https://github.com/Interactive-Studio/ISPageControl.git",
"https://github.com/Interactive-Studio/TransitionableTab.git",