forked from SwiftPackageIndex/PackageList
-
Notifications
You must be signed in to change notification settings - Fork 0
/
packages.json
3478 lines (3478 loc) · 173 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/aaronsky/buildkite-swift.git",
"https://github.com/abadikaka/SFSymbolsFinder.git",
"https://github.com/abdalaliii/CoreDataUtils.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-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/mqtt-nio.git",
"https://github.com/adam-fowler/s3-filesystem-kit.git",
"https://github.com/adam-fowler/soto-cognito-authentication-kit.git",
"https://github.com/adam-fowler/soto-cognito-authentication.git",
"https://github.com/adam-fowler/swift-srp.git",
"https://github.com/adam-fowler/xml-coding.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/adzerk/adzerk-ios-sdk.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/epoxy-ios.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/ConventionalCommitsKit.git",
"https://github.com/alexanderwe/LoggingKit.git",
"https://github.com/alexanderwe/SemanticVersioningKit.git",
"https://github.com/alexanderwe/WebSocketKit.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/alexisakers/HTMLString.git",
"https://github.com/alexisakers/ServerCrypto.git",
"https://github.com/alexito4/equallyspacedstack.git",
"https://github.com/alexito4/Raster.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/Alpha-Coders/HTMLBuilder.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/SwiftXmlRpc.git",
"https://github.com/AlwaysRightInstitute/SwiftyExpat.git",
"https://github.com/AlwaysRightInstitute/SwiftyWasmer.git",
"https://github.com/AlwaysRightInstitute/WebPackMiniS.git",
"https://github.com/AlwaysRightInstitute/wren-swift.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/SequenceBuilder.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/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/Appboy/appboy-ios-sdk.git",
"https://github.com/appcompany/swift-sky.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-distributed-tracing-baggage-core.git",
"https://github.com/apple/swift-distributed-tracing-baggage.git",
"https://github.com/apple/swift-distributed-tracing.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-collection-generator.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/appoly/AtlasKit.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/ArnavMotwani/CircularProgressSwiftUI.git",
"https://github.com/ArnavMotwani/UnsplashSwiftUI.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/autobahnswift/shuttle.git",
"https://github.com/automatontec/jsonconfig.git",
"https://github.com/autozimu/stringmetric.swift.git",
"https://github.com/AvdLee/appstoreconnect-swift-sdk.git",
"https://github.com/AvdLee/Poes.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/b3ll/Motion.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/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/barisuyar/Bruynet.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/engine.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/Boris-Em/ColorKit.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/bugfender/BugfenderSDK-iOS.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/cashapp/AccessibilitySnapshot.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/chrisladd/DashDashSwift.git",
"https://github.com/ChrisMash/ProvisioningProfile.git",
"https://github.com/chrispomeroyhale/csv-dialect-swift.git",
"https://github.com/christiankm/FinanceKit.git",
"https://github.com/christopherweems/Resultto.git",
"https://github.com/christopherweems/Sight.git",
"https://github.com/christopherweems/triple-q.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/Clipy/KeyHolder.git",
"https://github.com/Clipy/LoginServiceKit.git",
"https://github.com/Clipy/Magnet.git",
"https://github.com/Clipy/Sauce.git",
"https://github.com/Clipy/Screeen.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/CoreTempMonitorSwift.git",
"https://github.com/CodeNationDev/IntegritySwift.git",
"https://github.com/CodeNationDev/SimplyLogger.git",
"https://github.com/CodeNationDev/SwiftMagicHelpers.git",
"https://github.com/CodeNationDev/SwiftPowerStorage.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/CombineCommunity/Feedbacks.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/compnerd/cassowary.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/contentstack/contentstack-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/TVDatePicker.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/CuratoOpenSource/InjectableLoggers.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/CypherPoetReduxUtils.git",
"https://github.com/CypherPoet/ModulusOperandi.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/DanielCardonaRojas/SwiftVerify.git",
"https://github.com/DanielCardonaRojas/Veil.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/dannys42/ClosureChain.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/darrarski/ScrollViewController.git",
"https://github.com/darrarski/SwiftEndpoint.git",
"https://github.com/darrarski/swiftui-app-icon-creator.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/MultiModal.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/davidwkeith/FractionFormatter.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/Orchard.git",
"https://github.com/detroit-labs/SheetPresentation.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/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/argparser.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/dpedley/swift-chess.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/dscyrescotti/CodableX.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/electricbolt/appfiguratesdk.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/DateTemplates.git",
"https://github.com/eneko/github.git",
"https://github.com/eneko/kebab.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/eneko/Stripes.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/swift-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/fastlane/fastlane.git",
"https://github.com/fastred/DeallocationChecker.git",
"https://github.com/fauna/faunadb-swift.git",
"https://github.com/favret/poutoupush.git",