forked from SwiftPackageIndex/PackageList
-
Notifications
You must be signed in to change notification settings - Fork 0
/
packages.json
3311 lines (3311 loc) · 164 KB
/
packages.json
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/Conf.git",
"https://github.com/0111b/JSONDecoder-Keypath.git",
"https://github.com/0111b/UIPreview.git",
"https://github.com/0x7fs/countedset.git",
"https://github.com/0xacdc/XCFSodium.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/1904labs/ios-test-utils.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/a2/MessagePack.swift.git",
"https://github.com/a2/swift-shortcuts.git",
"https://github.com/aaastorga/darksky-provider.git",
"https://github.com/AaronBratcher/AgileDB.git",
"https://github.com/abdalaliii/Unboxing.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/ABridoux/lux.git",
"https://github.com/ABridoux/scout.git",
"https://github.com/achirkof/LoadableImage.git",
"https://github.com/aciidb0mb3r/SwiftMQTT.git",
"https://github.com/adam-fowler/aws-cognito-authentication-kit.git",
"https://github.com/adam-fowler/aws-cognito-authentication.git",
"https://github.com/adam-fowler/aws-signer-v4.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/swift-srp.git",
"https://github.com/adam-fowler/xml-encoder.git",
"https://github.com/adamcichy/SwiftySound.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.git",
"https://github.com/aestesis/CFreeType.git",
"https://github.com/aestesis/libtess.git",
"https://github.com/aestesis/Uridium.git",
"https://github.com/aestesis/vulkan.git",
"https://github.com/aestesis/xcb.git",
"https://github.com/agisboye/CLMDB.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/HorizonCalendar.git",
"https://github.com/airbnb/lottie-ios.git",
"https://github.com/airbnb/MagazineLayout.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/SwiftLEB.git",
"https://github.com/akkyie/Tablier.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/Alamofire/AlamofireNetworkActivityIndicator.git",
"https://github.com/alaskaairlines/atom.git",
"https://github.com/AlaskaAirlines/keychain.git",
"https://github.com/albertodebortoli/Promis.git",
"https://github.com/Alecrim/AlecrimAsyncKit.git",
"https://github.com/Alecrim/AlecrimCoreData.git",
"https://github.com/alejandro-isaza/HDF5Kit.git",
"https://github.com/alejandro-isaza/Upsurge.git",
"https://github.com/alemar11/AdvancedOperation.git",
"https://github.com/alemar11/CoreDataPlus.git",
"https://github.com/alemar11/CountryKit.git",
"https://github.com/alemar11/Mechanica.git",
"https://github.com/alex566/Match3Kit.git",
"https://github.com/alexandertar/LASwift.git",
"https://github.com/alexanderwe/LoggingKit.git",
"https://github.com/alexaubry/HTMLString.git",
"https://github.com/alexaubry/servercrypto.git",
"https://github.com/alexdrone/Render.git",
"https://github.com/alexdrone/Store.git",
"https://github.com/alexdrone/Utility.git",
"https://github.com/alexeyxo/protobuf-swift.git",
"https://github.com/alexito4/equallyspacedstack.git",
"https://github.com/alexito4/ReadingTimePublishPlugin.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/AlexLittlejohn/DelaunaySwift.git",
"https://github.com/alexpiezo/WebRTC.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/AliSoftware/OHHTTPStubs.git",
"https://github.com/AliSoftware/Reusable.git",
"https://github.com/allaboutapps/Fetch.git",
"https://github.com/allegro/swift-junit.git",
"https://github.com/allegro/swiftbox-logging.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/NWHTTPProtocol.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/amarantedaniel/JanusSwift.git",
"https://github.com/amatino-code/amatino-swift.git",
"https://github.com/amayers/NumericText.git",
"https://github.com/americanexpress/xcprojectlint.git",
"https://github.com/amine2233/GitHubModel.git",
"https://github.com/amine2233/Reactive.git",
"https://github.com/amine2233/Result.git",
"https://github.com/amonshiz/NavigationTitle.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/CLevelDB.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/andre-alves/PHDiff.git",
"https://github.com/andreamazz/AMPopTip.git",
"https://github.com/andreamazz/AMScrollingNavbar.git",
"https://github.com/andreamazz/BubbleTransition.git",
"https://github.com/andreamazz/SubtleVolume.git",
"https://github.com/andresilvagomez/Localize.git",
"https://github.com/AndrewBarba/alpaca-swift.git",
"https://github.com/AndrewBarba/Bluebird.swift.git",
"https://github.com/AndrewBarba/ed25519.git",
"https://github.com/AndrewBarba/lisk-swift.git",
"https://github.com/AndrewBennet/PersistedPropertyWrapper.git",
"https://github.com/andtie/YukonMatchedGeometry.git",
"https://github.com/andybest/linenoise-swift.git",
"https://github.com/andymedvedev/CTXTutorialEngine.git",
"https://github.com/angelopino/APJExtensions.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/antonheestand/AirKit.git",
"https://github.com/antonheestand/PolyKit.git",
"https://github.com/antonheestand/Trails.git",
"https://github.com/antoniocasero/Arrows.git",
"https://github.com/antoniocasero/Panels.git",
"https://github.com/antranapp/SwiftyHUDView.git",
"https://github.com/anzfactory/twitterclientcli.git",
"https://github.com/apacheexpress/apacheexpress3.git",
"https://github.com/apester-dev/ios-sdk.git",
"https://github.com/apleshkov/saber.git",
"https://github.com/apollographql/apollo-ios.git",
"https://github.com/ApolloZhu/BilibiliKit.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/appcompany/SwiftSky.git",
"https://github.com/appcraftstudio/buymeacoffee.git",
"https://github.com/appcraftstudio/producthunt.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/FHIRModels.git",
"https://github.com/apple/swift-algorithms.git",
"https://github.com/apple/swift-argument-parser.git",
"https://github.com/apple/swift-atomics.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-format.git",
"https://github.com/apple/swift-llbuild.git",
"https://github.com/apple/swift-llbuild2.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-se0270-range-set.git",
"https://github.com/apple/swift-service-discovery.git",
"https://github.com/apple/swift-statsd-client.git",
"https://github.com/apple/swift-syntax.git",
"https://github.com/apple/swift-system.git",
"https://github.com/apple/swift-tools-support-async.git",
"https://github.com/apple/swift-tools-support-core.git",
"https://github.com/apple/swiftpm-on-llbuild2.git",
"https://github.com/apppear/chartview.git",
"https://github.com/Appsaurus/Avatars.git",
"https://github.com/Appsaurus/CodableExtensions.git",
"https://github.com/appsaurus/cursorpagination.git",
"https://github.com/Appsaurus/FluentExtensions.git",
"https://github.com/appsaurus/fluentseeder.git",
"https://github.com/Appsaurus/FluentTestApp.git",
"https://github.com/Appsaurus/FluentTestModels.git",
"https://github.com/Appsaurus/FluentTestUtils.git",
"https://github.com/Appsaurus/PlaceholderImages.git",
"https://github.com/Appsaurus/RandomFactory.git",
"https://github.com/Appsaurus/RuntimeExtensions.git",
"https://github.com/Appsaurus/SwiftTestUtils.git",
"https://github.com/Appsaurus/VaporTestUtils.git",
"https://github.com/appsquickly/XcodeEditor.git",
"https://github.com/apptekstudios/ASCollectionView.git",
"https://github.com/arguiot/Euler.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/artemnovichkov/TransitionRouter.git",
"https://github.com/arthurpalves/badgy.git",
"https://github.com/arthurpalves/coherent-swift.git",
"https://github.com/Arti3DPlayer/USBDeviceSwift.git",
"https://github.com/artman/Signals.git",
"https://github.com/ArtSabintsev/Fontblaster.git",
"https://github.com/ArtSabintsev/Freedom.git",
"https://github.com/ArtSabintsev/Guitar.git",
"https://github.com/ArtSabintsev/Siren.git",
"https://github.com/ArtSabintsev/Zephyr.git",
"https://github.com/arturgrigor/IPAPI.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/GlueKit.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/automatontec/jsonconfig.git",
"https://github.com/autozimu/stringmetric.swift.git",
"https://github.com/avito-tech/Emcee.git",
"https://github.com/avito-tech/GraphiteClient.git",
"https://github.com/aydenp/passencoder.git",
"https://github.com/Azoy/Sword.git",
"https://github.com/Azoy/SwordRPC.git",
"https://github.com/Azure/azure-sdk-for-ios.git",
"https://github.com/b3ll/Decomposed.git",
"https://github.com/backslash-f/aescryptable.git",
"https://github.com/backslash-f/applogger.git",
"https://github.com/backslash-f/gcoverseer.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/BadhanGanesh/BJOTPViewController.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/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/bv-ios-swift-sdk.git",
"https://github.com/BeAppOnline/AFBilling.git",
"https://github.com/BeAppOnline/AFNetwork.git",
"https://github.com/BeAppOnline/Cancellable.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/belozierov/SwiftCoroutine.git",
"https://github.com/BenchR267/Parsel.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/benspratling4/SwiftPatterns.git",
"https://github.com/BenziAhamed/Tracery.git",
"https://github.com/bergusman/evotor.git",
"https://github.com/bermudadigitalstudio/cerberus.git",
"https://github.com/bermudadigitalstudio/Log.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/bibinjacobpulickal/BBAlert.git",
"https://github.com/bibinjacobpulickal/BBLayoutKit.git",
"https://github.com/bibinjacobpulickal/BBLoader.git",
"https://github.com/bibinjacobpulickal/BBToast.git",
"https://github.com/bibinjacobpulickal/ServiceManager.git",
"https://github.com/bielikb/textattributes.git",
"https://github.com/bielikb/UIViewPreview.git",
"https://github.com/bielikb/UseAutoLayout.git",
"https://github.com/bigMOTOR/DataDrivenRxDatasources.git",
"https://github.com/bignerdranch/Deferred.git",
"https://github.com/Bilue/ContentFittingWebView.git",
"https://github.com/BinaryBirds/build-kit.git",
"https://github.com/BinaryBirds/git-kit.git",
"https://github.com/BinaryBirds/path-kit.git",
"https://github.com/BinaryBirds/shell-kit.git",
"https://github.com/binarybirds/sunlight.git",
"https://github.com/BinaryBirds/swift-template.git",
"https://github.com/binarybirds/testify.git",
"https://github.com/binarybirds/timezones.git",
"https://github.com/bitmark-inc/tweetnacl-swiftwrap.git",
"https://github.com/bitrise-io/trace-cocoa-sdk.git",
"https://github.com/bitwit/slurp.git",
"https://github.com/bitwit/swift-package-directory.git",
"https://github.com/biutthapa/MollieKit.git",
"https://github.com/bizz84/SwiftyStoreKit.git",
"https://github.com/bjtj/swift-http-server.git",
"https://github.com/bjtj/swift-upnp-tools.git",
"https://github.com/bjtj/swift-xml.git",
"https://github.com/bkase/doctorpretty.git",
"https://github.com/Blackjacx/Assist.git",
"https://github.com/Blackjacx/Quickie.git",
"https://github.com/blackjacx/SHDateFormatter.git",
"https://github.com/blackjacx/SHSearchBar.git",
"https://github.com/blackjacx/Source.git",
"https://github.com/bloombox/Swift.git",
"https://github.com/bmbowdish/swiftfall.git",
"https://github.com/bmlt-enabled/BMLTiOSLib.git",
"https://github.com/bmonty/AvWeather.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/Web3.swift.git",
"https://github.com/bojan/Thingy.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/ICY.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-arch.git",
"https://github.com/bow-swift/bow-lite.git",
"https://github.com/bow-swift/bow-openapi.git",
"https://github.com/bow-swift/bow.git",
"https://github.com/bow-swift/nef.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/MistKit.git",
"https://github.com/brightdigit/SwiftVer.git",
"https://github.com/Brightify/ReactantUI.git",
"https://github.com/broadwaylamb/gottagofast.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/bruno-garcia/SentryCocoaLumberjack.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/BubiDevs/SwiftFlags.git",
"https://github.com/Building42/HTTPParserC.git",
"https://github.com/Building42/Telegraph.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/candor/sublimate.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/capnslipp/Vuckt.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/Carthage/ReactiveTask.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/catverse/balam.git",
"https://github.com/Cay-Zhang/SwiftSpeech.git",
"https://github.com/cbaker6/CertificateSigningRequest.git",
"https://github.com/cbguder/CBGPromise.git",
"https://github.com/cbpowell/MarqueeLabel.git",
"https://github.com/ccgus/fmdb.git",
"https://github.com/cellular/cellular-swift.git",
"https://github.com/cezheng/Fuzi.git",
"https://github.com/cfilipov/texttable.git",
"https://github.com/cgarciae/ndarray.git",
"https://github.com/cgarciae/stream.git",
"https://github.com/Ch0uti/ChouTi.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/chenyunguiMilook/SwiftyXML.git",
"https://github.com/chicio/ID3TagEditor.git",
"https://github.com/chicio/RangeUISlider.git",
"https://github.com/ChimeHQ/Dusk.git",
"https://github.com/ChimeHQ/Meter.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/chipjarred/Async.git",
"https://github.com/chipjarred/KnuthAlgorithmD.git",
"https://github.com/chrisaljoudi/swift-log-oslog.git",
"https://github.com/chrisamanse/QRSwift.git",
"https://github.com/chriseidhof/commonmark-swift.git",
"https://github.com/chriskarani/Rooster.git",
"https://github.com/chriskarani/Sukari.git",
"https://github.com/chrisladd/DashDashSwift.git",
"https://github.com/chrispomeroyhale/csv-dialect-swift.git",
"https://github.com/christiankm/FinanceKit.git",
"https://github.com/christopherweems/Sight.git",
"https://github.com/christopherweems/unstandard.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/CocoaLumberjack/CocoaLumberjack.git",
"https://github.com/Cocoanetics/DTCoreText.git",
"https://github.com/Cocoanetics/DTFoundation.git",
"https://github.com/Cocoanetics/Kvitto.git",
"https://github.com/codeeagle/combineex.git",
"https://github.com/codeeagle/rocketboot.git",
"https://github.com/codeinversion/sensors-swift-trainers.git",
"https://github.com/codeinversion/sensors-swift.git",
"https://github.com/CodeNationDev/SimplyLogger.git",
"https://github.com/CodeNationDev/UIMagicDropDown.git",
"https://github.com/codeOfRobin/CloudKitFeatureFlags.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/CombineCocoa.git",
"https://github.com/CombineCommunity/CombineDataSources.git",
"https://github.com/CombineCommunity/CombineExt.git",
"https://github.com/CombineCommunity/CombinePrintout.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/commercetools/commercetools-ios-sdk.git",
"https://github.com/composed-swift/composed.git",
"https://github.com/composed-swift/composedui.git",
"https://github.com/congnd/FMPhotoPicker.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/COpenBlas.git",
"https://github.com/CooperCorona/CoronaErrors.git",
"https://github.com/CooperCorona/CoronaMath.git",
"https://github.com/coopercorona/voronoi.git",
"https://github.com/CoreOffice/CoreXLSX.git",
"https://github.com/CoreOffice/CryptoOffice.git",
"https://github.com/CoreOffice/OLEKit.git",
"https://github.com/Cosmo/GrammaticalNumber.git",
"https://github.com/Cosmo/HackMan.git",
"https://github.com/cosmo/iso8859.git",
"https://github.com/Cosmo/Nodes.git",
"https://github.com/Cosmo/StringCase.git",
"https://github.com/couriere/uiextensions.git",
"https://github.com/cpageler93/api-client.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/cryptomator/cloud-access-swift.git",
"https://github.com/cryptomator/cryptolib-swift.git",
"https://github.com/cs4alhaider/Helper4Swift.git",
"https://github.com/cs4alhaider/NetworkKit.git",
"https://github.com/cs4alhaider/ProfilePlaceholderView.git",
"https://github.com/cs4alhaider/SearchView.git",
"https://github.com/cszatmary/DiscreteMathematics.git",
"https://github.com/cszatmary/SwiftySweetness.git",
"https://github.com/ctreffs/SwiftAssimp.git",
"https://github.com/ctreffs/SwiftImGui.git",
"https://github.com/ctreffs/SwiftSimctl.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/CypherPoetReduxUtils.git",
"https://github.com/CypherPoet/SwiftUIPolygon.git",
"https://github.com/dadalar/SwiftUI-CardStackView.git",
"https://github.com/dagronf/CIFilterFactory.git",
"https://github.com/daltonclaybrook/apispec.git",
"https://github.com/daltoniam/Starscream.git",
"https://github.com/danger/swift.git",
"https://github.com/daniel-grumberg/codablexpc.git",
"https://github.com/daniel-pedersen/SKQueue.git",
"https://github.com/Daniel1of1/CSwiftV.git",
"https://github.com/danielgindi/Charts.git",
"https://github.com/danielr/Mokka.git",
"https://github.com/danielrbrowne/APIota.git",
"https://github.com/dankinsoid/VDKit.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-floatingpointmath.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/dannys42/Causality.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/dasautoooo/Parma.git",
"https://github.com/dastrobu/argtree.git",
"https://github.com/dastrobu/geodesic.git",
"https://github.com/dastrobu/vincenty.git",
"https://github.com/DataDog/dd-sdk-ios.git",
"https://github.com/DataModelGen/DataModelKit.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/daveverwer/LeftPad.git",
"https://github.com/DaveWoodCom/XCGLogger.git",
"https://github.com/davidahouse/xcresultkit.git",
"https://github.com/davidarebuwa/CoverflowKeyboard.git",
"https://github.com/davidask/Futures.git",
"https://github.com/davidask/LayoutAid.git",
"https://github.com/davidask/StateViewController.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/Collections.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/dbsystel/DBNetworkStack.git",
"https://github.com/dchakarov/TrainInformationService.git",
"https://github.com/dcorvasce/decamelize.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/Just.git",
"https://github.com/dduan/NetTime.git",
"https://github.com/dduan/Pathos.git",
"https://github.com/dduan/Termbox.git",
"https://github.com/dduan/terminalpaint.git",
"https://github.com/dduan/TOMLDecoder.git",
"https://github.com/dduan/TOMLDeserializer.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/Decybel07/L10n-swift.git",
"https://github.com/dehesa/CodableCSV.git",
"https://github.com/dehesa/Conbini.git",
"https://github.com/dejanskledar/SerializedSwift.git",
"https://github.com/delba/JASON.git",
"https://github.com/demianturner/DTOnboarding.git",
"https://github.com/demianturner/DTPageControl.git",
"https://github.com/denissimon/prediction-builder-swift.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/Desquared/Greek-vocative-name-iOS.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/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/DimaRU/CDRCodable.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/Graphics.git",
"https://github.com/dn-m/Math.git",
"https://github.com/dn-m/Music.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/dominicegginton/spinner.git",
"https://github.com/DominicHolmes/UIRotationEffect.git",
"https://github.com/douglashill/DynamicButtonStack.git",
"https://github.com/douglashill/KeyboardKit.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/DynamicKit/SecurityKit.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/eBardX/XestiMonitors.git",
"https://github.com/EcolabCompany/RealmExtensions.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/EFPrefix/EFQRCode.git",
"https://github.com/efremidze/Cluster.git",
"https://github.com/efremidze/Haptica.git",
"https://github.com/efremidze/Magnetic.git",
"https://github.com/efremidze/VisualEffectView.git",
"https://github.com/egeniq/BetterSheet.git",
"https://github.com/egeniq/InjectPropertyWrapper.git",
"https://github.com/eggswift/ESTabBarController.git",
"https://github.com/eggswift/pull-to-refresh.git",
"https://github.com/ehellyer/HellfireSwiftPackage.git",
"https://github.com/einstore/einstorecore.git",
"https://github.com/einstore/githubkit.git",
"https://github.com/Einstore/HTTPMediaTypes.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/Einstore/WebErrorKit.git",
"https://github.com/ekazaev/ChatLayout.git",
"https://github.com/ekazaev/route-composer.git",
"https://github.com/elegantchaos/Actions.git",
"https://github.com/elegantchaos/ActionsKit.git",
"https://github.com/elegantchaos/ApplicationExtensions.git",
"https://github.com/elegantchaos/Arguments.git",
"https://github.com/elegantchaos/Builder.git",
"https://github.com/elegantchaos/BuilderConfiguration.git",
"https://github.com/elegantchaos/Bundles.git",
"https://github.com/elegantchaos/Coercion.git",
"https://github.com/elegantchaos/CollectionExtensions.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/Files.git",
"https://github.com/elegantchaos/Images.git",
"https://github.com/elegantchaos/JSONDump.git",
"https://github.com/elegantchaos/LayoutExtensions.git",
"https://github.com/elegantchaos/Localization.git",
"https://github.com/elegantchaos/Logger.git",
"https://github.com/elegantchaos/Runner.git",
"https://github.com/elegantchaos/SemanticVersion.git",
"https://github.com/elegantchaos/SketchX.git",
"https://github.com/elegantchaos/TokenView.git",
"https://github.com/elegantchaos/ViewExtensions.git",
"https://github.com/elegantchaos/XCTestExtensions.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/emorydunn/launchagent.git",
"https://github.com/emorydunn/SwiftGraphics.git",
"https://github.com/emqx/CocoaMQTT.git",
"https://github.com/eneko/CommandRegistry.git",
"https://github.com/eneko/github.git",
"https://github.com/eneko/Logger.git",
"https://github.com/eneko/MarkdownGenerator.git",
"https://github.com/eneko/ProcessRunner.git",
"https://github.com/eneko/regex.git",
"https://github.com/eneko/sourcedocs.git",
"https://github.com/engali94/CodablePersist.git",
"https://github.com/engali94/ErrorUtils.git",
"https://github.com/enums/calatrava.git",
"https://github.com/enums/Pjango-MySQL.git",
"https://github.com/enums/Pjango-Postman.git",
"https://github.com/enums/Pjango-SwiftyJSON.git",
"https://github.com/enums/pjango.git",
"https://github.com/envoy/Ambassador.git",
"https://github.com/envoy/Embassy.git",
"https://github.com/eonist/ResourceHelper.git",
"https://github.com/ephread/Instructions.git",
"https://github.com/erica/AnsiStyle.git",
"https://github.com/erica/lns.git",
"https://github.com/erica/now.git",
"https://github.com/erica/remind.git",
"https://github.com/erica/show.git",
"https://github.com/erica/Swift-General-Utility.git",
"https://github.com/erica/Swift-Mac-Utility.git",
"https://github.com/erica/xcopen.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/Ernest0-Production/DeclarativeLayoutKit.git",
"https://github.com/erusaevap/DStack.git",
"https://github.com/ethanhuang13/NSAttributedStringBuilder.git",
"https://github.com/ether-cli/ether.git",
"https://github.com/Ether-CLI/Manifest.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/ZeroMQ.git",
"https://github.com/evolution-app/zeromqswift.git",
"https://github.com/exceptionalprogramming/xp-swift.git",
"https://github.com/exyte/fan-menu.git",
"https://github.com/exyte/macaw.git",
"https://github.com/ezura/spell-checker-for-swift.git",
"https://github.com/ezura/SwiftSyntaxExtensions.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/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-aws-lambda-runtime.git",
"https://github.com/fabianmuecke/RxErrorHandling.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/FamilySearch/sModel.git",
"https://github.com/fanpyi/UICollectionViewLeftAlignedLayout-Swift.git",
"https://github.com/fassko/MeteoLVProvider.git",
"https://github.com/fassko/TartuWeatherProvider.git",
"https://github.com/fastred/DeallocationChecker.git",
"https://github.com/fauna/faunadb-swift.git",
"https://github.com/favret/poutoupush.git",
"https://github.com/fborges/environmentalism.git",
"https://github.com/fcanas/FFCParserCombinator.git",
"https://github.com/fcanas/hlscore.git",
"https://github.com/feixue299/FXPaddingLabel.git",
"https://github.com/FelixHerrmann/FHConstraints.git",
"https://github.com/FelixHerrmann/FHDiffableViewControllers.git",
"https://github.com/FelixHerrmann/FHExtensions.git",
"https://github.com/fermoya/SwiftUIPager.git",
"https://github.com/fernandodelrio/swiftcolorgenlibrary.git",
"https://github.com/ferranabello/Viperit.git",
"https://github.com/ferranpujolcamins/DotSwift.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/Parser.git",
"https://github.com/finestructure/Rester.git",
"https://github.com/finestructure/ValueCodable.git",
"https://github.com/firebase/abseil-cpp-SwiftPM.git",
"https://github.com/firebase/boringssl-SwiftPM.git",
"https://github.com/firebase/firebase-ios-sdk.git",
"https://github.com/firebase/grpc-SwiftPM.git",
"https://github.com/fireblade-engine/ecs.git",
"https://github.com/fireblade-engine/math.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",