forked from SwiftPackageIndex/PackageList
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackages.json
executable file
·3766 lines (3766 loc) · 188 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/8rightside/Resistance.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/BooleanExpressionEvaluation.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/jmespath.swift.git",
"https://github.com/adam-fowler/mqtt-nio.git",
"https://github.com/adam-fowler/s3-filesystem-kit.git",
"https://github.com/adam-fowler/swift-srp.git",
"https://github.com/adam-fowler/xml-coding.git",
"https://github.com/adamayoung/TMDb.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/admkopec/LSFileWrapper.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/airsidemobile/JOSESwift.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/mustache.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/amirdew/CollectionViewPagingLayout.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/amplitude/Amplitude-iOS.git",
"https://github.com/amraboelela/amrleveldb.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/antongaenko/keybro.git",
"https://github.com/antoniocasero/Arrows.git",
"https://github.com/antoniocasero/Panels.git",
"https://github.com/antranapp/SwiftyHUDView.git",
"https://github.com/anup-deshpande/EmptyDataView.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-collections-benchmark.git",
"https://github.com/apple/swift-collections.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-ssh.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/Appracatappra/CircularProgressGauge.git",
"https://github.com/Appracatappra/MultiplatformTabBar.git",
"https://github.com/Appracatappra/SwiftletData.git",
"https://github.com/Appracatappra/SwiftletUtilities.git",
"https://github.com/Appracatappra/SwiftUiSharing.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/AudioKit/AudioKit.git",
"https://github.com/AudioKit/AudioKitUI.git",
"https://github.com/AudioKit/DevoloopAudioKit.git",
"https://github.com/AudioKit/DunneAudioKit.git",
"https://github.com/AudioKit/MicrotonalAudioKit.git",
"https://github.com/AudioKit/SoulAudioKit.git",
"https://github.com/AudioKit/SoundpipeAudioKit.git",
"https://github.com/AudioKit/SporthAudioKit.git",
"https://github.com/AudioKit/STKAudioKit.git",
"https://github.com/autimatisering/AMKit.git",
"https://github.com/autobahnswift/shuttle.git",
"https://github.com/automatontec/jsonconfig.git",
"https://github.com/autoreleasefool/hive-engine.git",
"https://github.com/autoreleasefool/hive-mind.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/CommandLineToolkit.git",
"https://github.com/avito-tech/Emcee.git",
"https://github.com/avito-tech/GraphiteClient.git",
"https://github.com/aws-amplify/amplify-ios.git",
"https://github.com/aws-amplify/aws-appsync-realtime-client-ios.git",
"https://github.com/aws-amplify/aws-sdk-ios-spm.git",
"https://github.com/awslabs/aws-mobile-appsync-sdk-ios.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/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/Bayer-Group/TimberSwift.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/benrobinson16/SettingsBundleBuilder.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/bigMOTOR/swift-lens.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/plural-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/bixcorp/BDLocalizedDevicesModels.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/brevansio/String-Japanese.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/Options.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/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/CustomToolTip.git",
"https://github.com/chipjarred/KnuthAlgorithmD.git",
"https://github.com/chipjarred/MacMenuBar.git",
"https://github.com/chipjarred/SwizzleHelper.git",
"https://github.com/chiragramani/Tron.git",
"https://github.com/chojnac/Dumpling.git",
"https://github.com/chojnac/NotionSwift.git",
"https://github.com/chris-araman/CombineCloudKit.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/chriseidhof/TerminalUI.git",
"https://github.com/chriskarani/Rooster.git",
"https://github.com/chriskarani/Sukari.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/cntrump/Masonry.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/CodyFlame/CodyFire.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/compnerd/SwiftWinRT.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/contentstack/contentstack-utils-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/cossacklabs/themis.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/crewshin/CoinGecko-Swift.git",
"https://github.com/crewshin/solana-swift.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/cx-org/CombineX.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/ClampedPropertyWrapper.git",
"https://github.com/CypherPoet/CypherPoetReduxUtils.git",
"https://github.com/CypherPoet/ModulusOperandi.git",
"https://github.com/CypherPoet/SwiftUICurvedRectangleShape.git",
"https://github.com/CypherPoet/SwiftUIPolygon.git",
"https://github.com/CypherPoet/SwiftUIPreviewUtils.git",
"https://github.com/CypherPoet/SwiftUISineWaveShape.git",
"https://github.com/CypherPoet/SwiftUIWavyRectangleShape.git",
"https://github.com/CypherPoet/UnitIntervalPropertyWrapper.git",
"https://github.com/CypherPoet/XCTestStarterKit.git",
"https://github.com/dadalar/SwiftUI-CardStackView.git",
"https://github.com/dagronf/CIFilterFactory.git",
"https://github.com/dagronf/DSFActionBar.git",
"https://github.com/dagronf/DSFColorPicker.git",
"https://github.com/dagronf/DSFColorSampler.git",
"https://github.com/dagronf/DSFDragSlider.git",
"https://github.com/dagronf/DSFDropFilesView.git",
"https://github.com/dagronf/DSFFloatLabelledTextControl.git",
"https://github.com/dagronf/DSFFullTextSearchIndex.git",
"https://github.com/dagronf/DSFInspectorPanes.git",
"https://github.com/dagronf/DSFLabelledTextField.git",
"https://github.com/dagronf/DSFRational.git",
"https://github.com/dagronf/DSFRegex.git",
"https://github.com/dagronf/DSFSearchField.git",
"https://github.com/dagronf/DSFSecureTextField.git",
"https://github.com/dagronf/DSFSparkline.git",
"https://github.com/dagronf/DSFStepperView.git",
"https://github.com/dagronf/DSFToggleButton.git",
"https://github.com/dagronf/DSFToolbar.git",
"https://github.com/dagronf/DSFVersion.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/danielctull/KeychainItem.git",
"https://github.com/danielctull/PublisherView.git",
"https://github.com/danielctull/Resourceful.git",
"https://github.com/danielctull/RomanNumerals.git",
"https://github.com/danielctull/UserDefaultsKey.git",
"https://github.com/danielgindi/Charts.git",
"https://github.com/danielr/Mokka.git",
"https://github.com/danielrbrowne/APIota.git",
"https://github.com/danielsaidi/DeckKit.git",
"https://github.com/danielsaidi/MockingKit.git",
"https://github.com/danielsaidi/Sheeeeeeeeet.git",
"https://github.com/danielsaidi/SwiftKit.git",
"https://github.com/danielsaidi/SwiftUIKit.git",
"https://github.com/danielsaidi/Tutti.git",
"https://github.com/danielsaidi/Vandelay.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/davdroman/TextBuilder.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/david-livadaru/DLAngle.git",
"https://github.com/david-livadaru/DLCoreGraphics.git",
"https://github.com/david-livadaru/DLInterval.git",
"https://github.com/david-livadaru/DLSuggestionsTextField.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/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/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/denizcoskun/RxStore.git",
"https://github.com/dennisbirch/simple-analytics.git",
"https://github.com/denniscm190/Bazooka.git",
"https://github.com/denniscm190/StockCharts.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/DigitalMasterpieces/CoreImageExtensions.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/diniska/modal-view.git",
"https://github.com/diniska/swiftui-pdf.git",
"https://github.com/diniska/swiftui-system-colors.git",
"https://github.com/diniska/swiftui-wrapping-stack.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/dmrschmidt/DSWaveformImage.git",
"https://github.com/dmrschmidt/QRCode.git",
"https://github.com/dmrschmidt/SwiftColorWheel.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/Nanoseconds.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/dunesailer/Aesthete.git",
"https://github.com/dunesailer/Greebler.git",
"https://github.com/dunesailer/PersonalityKit.git",
"https://github.com/dunesailer/ShipShape.git",
"https://github.com/dunesailer/SongSprout.git",
"https://github.com/dunesailer/Utilities.git",
"https://github.com/dunesailer/Wordsmith.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",