-
-
Notifications
You must be signed in to change notification settings - Fork 610
/
Copy pathpackages.json
8652 lines (8652 loc) · 442 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/0x0c/TableViewContent.git",
"https://github.com/0xacdc/XCFSodium.git",
"https://github.com/0xdea110c8/HCSlider.git",
"https://github.com/0xdeadp00l/bech32.git",
"https://github.com/0xLeif/AppDependency.git",
"https://github.com/0xLeif/AppState.git",
"https://github.com/0xLeif/Cache.git",
"https://github.com/0xLeif/Chronicle.git",
"https://github.com/0xLeif/Closure.git",
"https://github.com/0xLeif/FlatMany.git",
"https://github.com/0xLeif/Fork.git",
"https://github.com/0xLeif/KeyValueView.git",
"https://github.com/0xLeif/ObjectUI.git",
"https://github.com/0xLeif/Plugin.git",
"https://github.com/0xLeif/PluginTask.git",
"https://github.com/0xLeif/Scribe.git",
"https://github.com/0xLeif/swift-custom-dump.git",
"https://github.com/0xLeif/Task.git",
"https://github.com/0xLeif/Yarn.git",
"https://github.com/0xLet/Chain.git",
"https://github.com/0xLet/DataObject.git",
"https://github.com/0xLet/E.num.git",
"https://github.com/0xLet/MetalUI.git",
"https://github.com/0xLet/Observation.git",
"https://github.com/0xLet/SURL.git",
"https://github.com/0xLet/SwiftFu.git",
"https://github.com/0xLet/SwiftUIKit.git",
"https://github.com/0xLet/WTV.git",
"https://github.com/0xOpenBytes/c.git",
"https://github.com/0xOpenBytes/Cache.git",
"https://github.com/0xOpenBytes/CacheStore.git",
"https://github.com/0xOpenBytes/Disk.git",
"https://github.com/0xOpenBytes/FLet.git",
"https://github.com/0xOpenBytes/Network.git",
"https://github.com/0xOpenBytes/o.git",
"https://github.com/0xOpenBytes/OpenBytesNavigation.git",
"https://github.com/0xOpenBytes/t.git",
"https://github.com/0xOpenBytes/Test.git",
"https://github.com/0xWDG/Admob-SwiftUI.git",
"https://github.com/0xWDG/CachedAsyncImage.git",
"https://github.com/0xWDG/Colors.git",
"https://github.com/0xWDG/DynamicUI.git",
"https://github.com/0xWDG/FilePicker.git",
"https://github.com/0xWDG/GameControllerKit.git",
"https://github.com/0xWDG/iCloudStorage.git",
"https://github.com/0xWDG/ImagePicker.git",
"https://github.com/0xWDG/Inspect.git",
"https://github.com/0xWDG/NetworkMonitor.git",
"https://github.com/0xWDG/OnboardingKit.git",
"https://github.com/0xWDG/OSLogViewer.git",
"https://github.com/0xWDG/PHPFramework.git",
"https://github.com/0xWDG/PreventScreenshot.git",
"https://github.com/0xWDG/SecureStorage.git",
"https://github.com/0xWDG/SimpleNetworking.git",
"https://github.com/0xWDG/SwiftCronParser.git",
"https://github.com/0xWDG/SwiftExtras.git",
"https://github.com/0xWDG/XCUITestHelper.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/1711-Games/LGN-Log.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/21-DOT-DEV/swift-secp256k1.git",
"https://github.com/21GramConsulting/Beton.git",
"https://github.com/21GramConsulting/MediaType.git",
"https://github.com/23122K/swift-loggable.git",
"https://github.com/2C2P/PGWSDK-SwiftPackage.git",
"https://github.com/2C2P/PGWSDKHELPER-SwiftPackage.git",
"https://github.com/2C2P/PGWUISDK-SwiftPackage.git",
"https://github.com/2C2P/SecurePaySDK-SwiftPackage.git",
"https://github.com/3a4oT/DateToolsObjC.git",
"https://github.com/3a4oT/IGListKit.git",
"https://github.com/3lvis/Networking.git",
"https://github.com/3qax/swiftygfx.git",
"https://github.com/3qax/swiftyoled.git",
"https://github.com/417-72KI/JapaneseHoliday.git",
"https://github.com/417-72KI/MockUserDefaults.git",
"https://github.com/417-72KI/MultipartFormDataParser.git",
"https://github.com/417-72KI/StubNetworkKit.git",
"https://github.com/417-72KI/SwiftUtilities.git",
"https://github.com/453jerry/FlightLog.git",
"https://github.com/453jerry/NetDiagnosis.git",
"https://github.com/453jerry/RxStoreKit.git",
"https://github.com/4rays/swift-fsrs.git",
"https://github.com/623637646/SwiftHook.git",
"https://github.com/8rightside/Resistance.git",
"https://github.com/a-sarris/KMBFormatter.git",
"https://github.com/a2/MessagePack.swift.git",
"https://github.com/a2/swift-shortcuts.git",
"https://github.com/a7ex/FindSimulator.git",
"https://github.com/a7ex/xcresultparser.git",
"https://github.com/aaastorga/darksky-provider.git",
"https://github.com/AAAstorga/Menkyo.git",
"https://github.com/AAChartModel/AAChartKit-Swift-Pro.git",
"https://github.com/AAChartModel/AAChartKit-Swift.git",
"https://github.com/AaronBratcher/AgileDB.git",
"https://github.com/aaronsky/asc-swift.git",
"https://github.com/aaronsky/buildkite-swift.git",
"https://github.com/aataraxiaa/ScalingCarousel.git",
"https://github.com/abadikaka/SFSymbolsFinder.git",
"https://github.com/abandy/swiftqe.git",
"https://github.com/abdel-17/swift-rational.git",
"https://github.com/abdullah-original/ExtendedDatePicker.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/abhimuktheeswarar/Flywheel.git",
"https://github.com/ably/ably-asset-tracking-swift.git",
"https://github.com/ably/ably-cocoa.git",
"https://github.com/ably/delta-codec-cocoa.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/aciidgh/SwiftMQTT.git",
"https://github.com/ActuallyTaylor/Firefly.git",
"https://github.com/ActuallyTaylor/SFSymbols.git",
"https://github.com/ActuallyTaylor/SwiftHTMLToMarkdown.git",
"https://github.com/acuteimmersive/openimmersivelib.git",
"https://github.com/AdaEngine/AdaEngine.git",
"https://github.com/AdaEngine/box2d-swift.git",
"https://github.com/AdaEngine/glslang.git",
"https://github.com/AdaEngine/libpng.git",
"https://github.com/AdaEngine/miniaudio.git",
"https://github.com/AdaEngine/msdf-atlas-gen.git",
"https://github.com/AdaEngine/SPIRV-Cross.git",
"https://github.com/adam-fowler/async-collections.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/s3-filesystem-kit.git",
"https://github.com/adam-fowler/swift-srp.git",
"https://github.com/adam-fowler/swift-web.git",
"https://github.com/adam-fowler/swift-zip-archive.git",
"https://github.com/adam-fowler/xml-coding.git",
"https://github.com/adamayoung/maze-solver.git",
"https://github.com/adamayoung/police-data-kit.git",
"https://github.com/adamayoung/swiftlint-plugin.git",
"https://github.com/adamayoung/TMDb.git",
"https://github.com/adamcichy/SwiftySound.git",
"https://github.com/adamfootdev/AboutKit.git",
"https://github.com/adamfootdev/FeaturesKit.git",
"https://github.com/adamfootdev/HelpKit.git",
"https://github.com/adamnemecek/phantomlike.git",
"https://github.com/adamnemecek/webmidikit.git",
"https://github.com/adamrushy/OpenAISwift.git",
"https://github.com/adamwaite/Validator.git",
"https://github.com/adamwulf/ClippingBezier.git",
"https://github.com/adamwulf/HandShadows.git",
"https://github.com/adamwulf/Inkable.git",
"https://github.com/adamwulf/Locks.git",
"https://github.com/adamwulf/PerformanceBezier.git",
"https://github.com/adamwulf/PonyExpress.git",
"https://github.com/adamwulf/SwiftToolbox.git",
"https://github.com/adaptyteam/AdaptySDK-iOS.git",
"https://github.com/adhumi/bradel.git",
"https://github.com/adi-sharma26/AdvancedSwiftDataStructures.git",
"https://github.com/adjust/adjust_signature_sdk.git",
"https://github.com/adjust/ios_sdk.git",
"https://github.com/admkopec/LSFileWrapper.git",
"https://github.com/adobe/aepsdk-analytics-ios.git",
"https://github.com/adobe/aepsdk-core-ios.git",
"https://github.com/adobe/aepsdk-rulesengine-ios.git",
"https://github.com/Adobels/UIViewKit.git",
"https://github.com/Adorkable/Eunomia.git",
"https://github.com/Adorkable/swift-log-format-and-pipe.git",
"https://github.com/advantagefse/json-logic-swift.git",
"https://github.com/Adyen/adyen-3ds2-ios.git",
"https://github.com/Adyen/adyen-authentication-ios.git",
"https://github.com/Adyen/adyen-ios.git",
"https://github.com/Adyen/adyen-networking-ios.git",
"https://github.com/Adyen/adyen-swift-public-api-diff.git",
"https://github.com/Adyen/adyen-wechatpay-ios.git",
"https://github.com/adzerk/adzerk-ios-sdk.git",
"https://github.com/aegzorz/stilleben.git",
"https://github.com/aepryus/Acheron.git",
"https://github.com/aerisweather/aerisweather-ios.git",
"https://github.com/aerobounce/approle.swift.git",
"https://github.com/aerobounce/trash.swift.git",
"https://github.com/aestesis/aether.git",
"https://github.com/aestesis/Cairo.git",
"https://github.com/aestesis/CCairo.git",
"https://github.com/aestesis/CFontConfig.git",
"https://github.com/aestesis/CFreeType.git",
"https://github.com/aestesis/CPango.git",
"https://github.com/aestesis/Cpng.git",
"https://github.com/aestesis/libtess.git",
"https://github.com/aestesis/Uridium.git",
"https://github.com/aestesis/vulkan.git",
"https://github.com/aestesis/X11.git",
"https://github.com/aestesis/xcb.git",
"https://github.com/aestesis/Zlib.git",
"https://github.com/aggie33/BitVector.git",
"https://github.com/aggie33/CopyOnWrite.git",
"https://github.com/agisboye/CLMDB.git",
"https://github.com/agisboye/swiftlmdb.git",
"https://github.com/agnosticdev/networkconnectivity.git",
"https://github.com/AgoraIO-Community/Extension-Bose-PinPoint-iOS.git",
"https://github.com/AgoraIO-Community/Extension-Synervoz-Voice-FX-iOS.git",
"https://github.com/AgoraIO-Community/Extension-VisionLab-DoreSegment-iOS.git",
"https://github.com/AgoraIO-Community/Extension-Voicemod-iOS.git",
"https://github.com/AgoraIO-Community/SwiftUIRtc.git",
"https://github.com/AgoraIO-Community/VideoUIKit-iOS.git",
"https://github.com/AgoraIO-Community/VideoUIKit-macOS.git",
"https://github.com/AgoraIO/AgoraAudio_iOS.git",
"https://github.com/AgoraIO/AgoraAudio_macOS.git",
"https://github.com/AgoraIO/AgoraInfra_iOS.git",
"https://github.com/AgoraIO/AgoraInfra_macOS.git",
"https://github.com/AgoraIO/AgoraLite_iOS.git",
"https://github.com/AgoraIO/AgoraRtcEngine_iOS.git",
"https://github.com/AgoraIO/AgoraRtcEngine_macOS.git",
"https://github.com/AgoraIO/AgoraRtm_Apple.git",
"https://github.com/AgoraIO/AgoraRtm_iOS.git",
"https://github.com/AgoraIO/AgoraRtm_macOS.git",
"https://github.com/aguilarpgc/timelapse.git",
"https://github.com/aheze/SwipeActions.git",
"https://github.com/ahmdmhasn/swiftui-imperative-navigation.git",
"https://github.com/ahti/SQLele.git",
"https://github.com/ahti/SQLeleCoder.git",
"https://github.com/aidantwoods/swift-paseto.git",
"https://github.com/aidantwoods/swift-sodium.git",
"https://github.com/aidantwoods/TypedJSON.git",
"https://github.com/ailtonvivaz/swift-request.git",
"https://github.com/aimalygin/StableCollectionViewLayout.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/lottie-spm.git",
"https://github.com/airbnb/MagazineLayout.git",
"https://github.com/airbnb/ResilientDecoding.git",
"https://github.com/airbnb/swift.git",
"https://github.com/airsidemobile/JOSESwift.git",
"https://github.com/aj-bartocci/Storybook-SwiftUI.git",
"https://github.com/ajevans99/swift-json-schema.git",
"https://github.com/akardas16/SideMenu.git",
"https://github.com/akashivskyy/quick-swift-check.git",
"https://github.com/akbashev/cluster-event-sourcing.git",
"https://github.com/akbashev/swift-chat.git",
"https://github.com/akbashev/swift-distributed-actors.git",
"https://github.com/akhilcb/ACBTokenField.git",
"https://github.com/akidon0000/swift-aklog.git",
"https://github.com/akkyie/SwiftLEB.git",
"https://github.com/akkyie/Tablier.git",
"https://github.com/akosma/SwiftMoment.git",
"https://github.com/aksamitsah/AlignedCollectionViewFlowLayout.git",
"https://github.com/aksamitsah/CountryPickerAKS.git",
"https://github.com/Al00X/LanguageDetector.git",
"https://github.com/Alamofire/Alamofire.git",
"https://github.com/Alamofire/AlamofireImage.git",
"https://github.com/Alamofire/AlamofireNetworkActivityIndicator.git",
"https://github.com/alankarmisra/SwiftSignatureView.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/Alecrim/Reachability.git",
"https://github.com/alejandro-isaza/HDF5Kit.git",
"https://github.com/alejandro-isaza/Upsurge.git",
"https://github.com/aleksproger/circular-progress.git",
"https://github.com/aleksproger/debounced-closure.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/alephao/swift-http-types-htmx.git",
"https://github.com/alephao/swift-rlp.git",
"https://github.com/alessiorubicini/IslandAlertsForSwiftUI.git",
"https://github.com/alessiorubicini/LocationPickerForSwiftUI.git",
"https://github.com/alessiorubicini/SFSymbolsPickerForSwiftUI.git",
"https://github.com/alessiorubicini/SwiftSessions.git",
"https://github.com/alex566/Creamy3D.git",
"https://github.com/alex566/Match3Kit.git",
"https://github.com/Alexander-Ignition/OSLogging.git",
"https://github.com/alexandersteinhauer/SwiftUCI.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/swiftui-theming.git",
"https://github.com/alexanderwe/WebSocketKit.git",
"https://github.com/alexandrehsaad/swift-contributors-plugin.git",
"https://github.com/alexandreos/UILabel-Copyable.git",
"https://github.com/alexaubry/HTMLString.git",
"https://github.com/alexaubry/ServerCrypto.git",
"https://github.com/alexbartisro/BartisUtilities.git",
"https://github.com/alexdremov/BeautyChart.git",
"https://github.com/alexdremov/FoggyColors.git",
"https://github.com/alexdremov/PathPresenter.git",
"https://github.com/alexdremov/SwiftYFinance.git",
"https://github.com/alexdrone/Primer.git",
"https://github.com/alexdrone/Render.git",
"https://github.com/alexdrone/Store.git",
"https://github.com/alexeichhorn/SwiftUINavigationHeader.git",
"https://github.com/alexeichhorn/YouTubeKit.git",
"https://github.com/alexey1312/SnapshotTestingHEIC.git",
"https://github.com/alexeyxo/protobuf-swift.git",
"https://github.com/alexhunsley/patchouli-core.git",
"https://github.com/alexhunsley/patchouli-jsonpatch.git",
"https://github.com/alexiscreuzot/KAPinField.git",
"https://github.com/alexiscreuzot/SwiftyGif.git",
"https://github.com/alexito4/Baggins.git",
"https://github.com/alexito4/equallyspacedstack.git",
"https://github.com/alexito4/Flow.git",
"https://github.com/alexito4/Genesis.git",
"https://github.com/alexito4/Raster.git",
"https://github.com/alexito4/ReadingTimePublishPlugin.git",
"https://github.com/alexito4/RelayStore.git",
"https://github.com/alexito4/sectioner.git",
"https://github.com/alexito4/slox.git",
"https://github.com/alexito4/UnwrapOrThrow.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/alexrozanski/Coquille.git",
"https://github.com/alexrozanski/llama.swift.git",
"https://github.com/alexruperez/SecurePropertyStorage.git",
"https://github.com/alexruperez/tagging.git",
"https://github.com/alexslee/DesignReviewer.git",
"https://github.com/alexslee/FlexSeal.git",
"https://github.com/alexslee/Scintillate.git",
"https://github.com/alfianlosari/GPTEncoder.git",
"https://github.com/alfianlosari/ITunesFeedGenerator.git",
"https://github.com/algolia/algoliasearch-client-swift.git",
"https://github.com/Alhiane/ValidatorKit.git",
"https://github.com/aliadam/imagewithactivityindicator.git",
"https://github.com/alibaba/HandyJSON.git",
"https://github.com/AliMark71/SegmentTreeKit.git",
"https://github.com/AliSoftware/Dip.git",
"https://github.com/AliSoftware/OHHTTPStubs.git",
"https://github.com/AliSoftware/Reusable.git",
"https://github.com/Alja7dali/swift-web-page.git",
"https://github.com/Alkenso/sEndpointSecurity.git",
"https://github.com/Alkenso/sLaunchctl.git",
"https://github.com/Alkenso/sMock.git",
"https://github.com/Alkenso/SwiftSpellbook.git",
"https://github.com/Alkenso/SwiftSpellbook_macOS.git",
"https://github.com/Alkenso/sXPC.git",
"https://github.com/allaboutapps/DataSource.git",
"https://github.com/allaboutapps/Fetch.git",
"https://github.com/allaboutapps/Toolbox.git",
"https://github.com/alladinian/HistogramView.git",
"https://github.com/AllanJuenemann/CalendarView.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/alobaili/camera-picker.git",
"https://github.com/Alpensegler/TweaKit.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/AlvaroSanzRodrigo/SuperScrollView.git",
"https://github.com/Alviere/alviere-accounts-ios.git",
"https://github.com/Alviere/alviere-camera-ios.git",
"https://github.com/Alviere/alviere-cards-ios.git",
"https://github.com/Alviere/alviere-core-ios.git",
"https://github.com/Alviere/alviere-payments-ios.git",
"https://github.com/Alviere/alviere-remittances-ios.git",
"https://github.com/AlwaysRightInstitute/mustache.git",
"https://github.com/AlwaysRightInstitute/SwiftEliza.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/amazon-connect/amazon-connect-chat-ios.git",
"https://github.com/ameingast/cocoaimagehashing.git",
"https://github.com/amerhukic/AHDownloadButton.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/amirsaam/CodableAny.git",
"https://github.com/amirsaam/EncryptKit.git",
"https://github.com/amirsaam/PatreonAPI-Swift.git",
"https://github.com/amirsaam/Radix-UI-Swift.git",
"https://github.com/Amnell/TaskLoadingAggregate.git",
"https://github.com/amodm/iso9660-swift.git",
"https://github.com/amonshiz/NavigationTitle.git",
"https://github.com/amosavian/AMSMB2.git",
"https://github.com/amosavian/ExtendedAttributes.git",
"https://github.com/amosavian/JWSETKit.git",
"https://github.com/amosavian/LocaleManager.git",
"https://github.com/amplitude/Amplitude-iOS.git",
"https://github.com/amplitude/analytics-connector-ios.git",
"https://github.com/amraboelela/amrleveldb.git",
"https://github.com/amraboelela/swiftleveldb.git",
"https://github.com/AmrKoritem/AKLanguageManager.git",
"https://github.com/amzn/openapi-swift-code-generate.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-support.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/AnarchoSystems/AST.git",
"https://github.com/AnarchoSystems/DeepSwift.git",
"https://github.com/AnarchoSystems/process-kit.git",
"https://github.com/AnbalaganD/BoundarySlider.git",
"https://github.com/AnbalaganD/CarouselView.git",
"https://github.com/AnbalaganD/EagleNet.git",
"https://github.com/AnbalaganD/iModels.git",
"https://github.com/Anbarasan-S/DisplayerPackage.git",
"https://github.com/andersonlucasg3/Swift.Binary.git",
"https://github.com/andooown/lexicon-gen.git",
"https://github.com/andooown/swift-atproto.git",
"https://github.com/andre-alves/PHDiff.git",
"https://github.com/Andre-Pham/SwiftSerialization.git",
"https://github.com/andreabusi/SwiftFlags.git",
"https://github.com/andrealufino/ChangelogKit.git",
"https://github.com/andrealufino/Deviice.git",
"https://github.com/andrealufino/Luminous.git",
"https://github.com/andrealufino/QRDispenser.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/AndreasVerhoeven/AutoLayoutConvenience.git",
"https://github.com/AndreasVerhoeven/AveCommonHelperViews.git",
"https://github.com/AndreasVerhoeven/AveDataSource.git",
"https://github.com/AndreasVerhoeven/AveFontHelpers.git",
"https://github.com/AndreasVerhoeven/BalloonView.git",
"https://github.com/AndreasVerhoeven/CustomPageableCollectionView.git",
"https://github.com/AndreasVerhoeven/GeometryHelpers.git",
"https://github.com/AndreasVerhoeven/NavigationBarBackgroundHider.git",
"https://github.com/AndreasVerhoeven/ScrollViewObserver.git",
"https://github.com/AndreasVerhoeven/SelfSizingScroller.git",
"https://github.com/AndreasVerhoeven/StackedItemsCarousel.git",
"https://github.com/AndreasVerhoeven/UIKitAnimations.git",
"https://github.com/andrei200287/Chat2App.git",
"https://github.com/andreilob/CameraKage.git",
"https://github.com/andreilob/ConnectionKage.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/andrey-shavelev/Juice.git",
"https://github.com/Androp0v/PowerMetricsKit.git",
"https://github.com/andtie/SequenceBuilder.git",
"https://github.com/andtie/YukonMatchedGeometry.git",
"https://github.com/andybest/linenoise-swift.git",
"https://github.com/andyfinnell/NativeMarkKit.git",
"https://github.com/andymedvedev/CTXTutorialEngine.git",
"https://github.com/angelopino/APJExtensions.git",
"https://github.com/angu-software/SwiftAsyncAssert.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/antitypical/Result.git",
"https://github.com/antlr/antlr4.git",
"https://github.com/antongaenko/keybro.git",
"https://github.com/antonio-war/SwiftyGPT.git",
"https://github.com/antonio-war/SwiftyNetworking.git",
"https://github.com/antonio-war/SwiftyReachability.git",
"https://github.com/antoniocasero/Arrows.git",
"https://github.com/antoniocasero/Panels.git",
"https://github.com/antonmartinsson/GaugeKit.git",
"https://github.com/antonsynd/swift-event-broadcasting.git",
"https://github.com/antranapp/SwiftyHUDView.git",
"https://github.com/anttijuu/FinnishPIDVerifier.git",
"https://github.com/anup-deshpande/EmptyDataView.git",
"https://github.com/Anyline/anyline-ocr-spm-module.git",
"https://github.com/anzfactory/twitterclientcli.git",
"https://github.com/apache/spark-connect-swift.git",
"https://github.com/apacheexpress/apacheexpress3.git",
"https://github.com/Apadmi-Engineering/SwiftMockzilla.git",
"https://github.com/apester-dev/ios-sdk.git",
"https://github.com/Apex-Studios-LLC/PatternAuthentication.git",
"https://github.com/apialerts/apialerts-swift.git",
"https://github.com/apleshkov/saber.git",
"https://github.com/apocolipse/Thrift-Swift.git",
"https://github.com/Apodini/swift-log-elk.git",
"https://github.com/apollographql/apollo-ios.git",
"https://github.com/ApolloZhu/BilibiliKit.git",
"https://github.com/ApolloZhu/BoolBuilder.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/appcraftconsulting/buymeacoffee.git",
"https://github.com/appcraftconsulting/producthunt.git",
"https://github.com/appcron/acinteractor.git",
"https://github.com/appcues/appcues-ios-sdk.git",
"https://github.com/appcues/segment-appcues-ios.git",
"https://github.com/appdecentral/replicatingtypes.git",
"https://github.com/apple/app-store-server-library-swift.git",
"https://github.com/apple/example-package-dealer.git",
"https://github.com/apple/example-package-deckofplayingcards.git",
"https://github.com/apple/example-package-figlet.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/live-caller-id-lookup-example.git",
"https://github.com/apple/ml-stable-diffusion.git",
"https://github.com/apple/pkl-swift.git",
"https://github.com/apple/swift-algorithms.git",
"https://github.com/apple/swift-argument-parser.git",
"https://github.com/apple/swift-asn1.git",
"https://github.com/apple/swift-async-algorithms.git",
"https://github.com/apple/swift-async-dns-resolver.git",
"https://github.com/apple/swift-atomics.git",
"https://github.com/apple/swift-cassandra-client.git",
"https://github.com/apple/swift-certificates.git",
"https://github.com/apple/swift-cluster-membership.git",
"https://github.com/apple/swift-collections-benchmark.git",
"https://github.com/apple/swift-collections.git",
"https://github.com/apple/swift-container-plugin.git",
"https://github.com/apple/swift-crypto.git",
"https://github.com/apple/swift-distributed-actors.git",
"https://github.com/apple/swift-distributed-tracing-baggage-core.git",
"https://github.com/apple/swift-distributed-tracing-extras.git",
"https://github.com/apple/swift-distributed-tracing.git",
"https://github.com/apple/swift-homomorphic-encryption.git",
"https://github.com/apple/swift-http-structured-headers.git",
"https://github.com/apple/swift-http-types.git",
"https://github.com/apple/swift-llbuild2.git",
"https://github.com/apple/swift-log.git",
"https://github.com/apple/swift-matter-examples.git",
"https://github.com/apple/swift-metrics-extras.git",
"https://github.com/apple/swift-metrics.git",
"https://github.com/apple/swift-mmio.git",
"https://github.com/apple/swift-nio-extras.git",
"https://github.com/apple/swift-nio-http2.git",
"https://github.com/apple/swift-nio-imap.git",
"https://github.com/apple/swift-nio-nghttp2-support.git",
"https://github.com/apple/swift-nio-oblivious-http.git",
"https://github.com/apple/swift-nio-ssh.git",
"https://github.com/apple/swift-nio-ssl-support.git",
"https://github.com/apple/swift-nio-ssl.git",
"https://github.com/apple/swift-nio-transport-services.git",
"https://github.com/apple/swift-nio-zlib-support.git",
"https://github.com/apple/swift-nio.git",
"https://github.com/apple/swift-numerics.git",
"https://github.com/apple/swift-openapi-generator.git",
"https://github.com/apple/swift-openapi-runtime.git",
"https://github.com/apple/swift-openapi-urlsession.git",
"https://github.com/apple/swift-playdate-examples.git",
"https://github.com/apple/swift-protobuf.git",
"https://github.com/apple/swift-service-context.git",
"https://github.com/apple/swift-service-discovery.git",
"https://github.com/apple/swift-standard-library-preview.git",
"https://github.com/apple/swift-statsd-client.git",
"https://github.com/apple/swift-system.git",
"https://github.com/apple/swift-tools-support-async.git",
"https://github.com/apple/swiftpm-on-llbuild2.git",
"https://github.com/ApplebaumIan/SwiftUI-Apple-Watch-Decimal-Pad.git",
"https://github.com/AppLovin/AppLovin-MAX-Swift-Package.git",
"https://github.com/appmetrica/appmetrica-sdk-ios.git",
"https://github.com/appmetrica/Kiwi.git",
"https://github.com/appmetrica/push-sdk-ios.git",
"https://github.com/appoly/AtlasKit.git",
"https://github.com/appoly/PassportKit.git",
"https://github.com/apppear/chartview.git",
"https://github.com/Appracatappra/AddToSiriButton.git",
"https://github.com/Appracatappra/AppStoreManager.git",
"https://github.com/Appracatappra/CircularProgressGauge.git",
"https://github.com/Appracatappra/GameCenterManager.git",
"https://github.com/Appracatappra/GraceLanguage.git",
"https://github.com/Appracatappra/LogManager.git",
"https://github.com/Appracatappra/MultiplatformTabBar.git",
"https://github.com/Appracatappra/ODRManager.git",
"https://github.com/Appracatappra/SimpleSerializer.git",
"https://github.com/Appracatappra/SoundManager.git",
"https://github.com/Appracatappra/SpeechManager.git",
"https://github.com/Appracatappra/SwiftletBarcodes.git",
"https://github.com/Appracatappra/SwiftletData.git",
"https://github.com/Appracatappra/SwiftletRadioButtonPicker.git",
"https://github.com/Appracatappra/SwiftletUtilities.git",
"https://github.com/Appracatappra/SwiftUIGamepad.git",
"https://github.com/Appracatappra/SwiftUIKit.git",
"https://github.com/Appracatappra/SwiftUIPanoramaViewer.git",
"https://github.com/Appracatappra/SwiftUiSharing.git",
"https://github.com/approvals/ApprovalTests.Swift.git",
"https://github.com/Appsaurus/Avatars.git",
"https://github.com/Appsaurus/CodableExtensions.git",
"https://github.com/appsaurus/cursorpagination.git",
"https://github.com/Appsaurus/Fakery.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/RoutingKitExtensions.git",
"https://github.com/Appsaurus/RuntimeExtensions.git",
"https://github.com/Appsaurus/Swiftest.git",
"https://github.com/Appsaurus/SwiftTestUtils.git",
"https://github.com/Appsaurus/VaporExtensions.git",
"https://github.com/Appsaurus/VaporTestUtils.git",
"https://github.com/appsquickly/XcodeEditor.git",
"https://github.com/appstefan/HighlightSwift.git",
"https://github.com/APPSTRM/AudiConnect.git",
"https://github.com/apptekstudios/ASCollectionView.git",
"https://github.com/appwrite/sdk-for-apple.git",
"https://github.com/appwrite/sdk-for-swift.git",
"https://github.com/aptabase/aptabase-swift.git",
"https://github.com/Arafo/LightSessionKit.git",
"https://github.com/arasan01/swift-dependencies-extras.git",
"https://github.com/arbyruns/AnimatedSwipeCard.git",
"https://github.com/ArchieGoodwin/AnyTranslate.git",
"https://github.com/ArchieGoodwin/AudioProcessor.git",
"https://github.com/ArchieGoodwin/BLEDiscovery.git",
"https://github.com/ArchieGoodwin/ElevenlabsSwift.git",
"https://github.com/ArchieGoodwin/PineconeSwift.git",
"https://github.com/AreroKetahi/ErrorHandler.git",
"https://github.com/AreroKetahi/P-Certificate.git",
"https://github.com/AreroKetahi/swift-log-data.git",
"https://github.com/argentlabs/web3.swift.git",
"https://github.com/argmaxinc/whisperkit.git",
"https://github.com/arguiot/Euler.git",
"https://github.com/Arideno/AlphaMacroKit.git",
"https://github.com/ariskox/BiometricsVault.git",
"https://github.com/arjun-dureja/ModernSlider.git",
"https://github.com/armadsen/GlassGem.git",
"https://github.com/armadsen/mypackage.git",
"https://github.com/armadsen/ORSSerialPort.git",
"https://github.com/ArnavMotwani/CircularProgressSwiftUI.git",
"https://github.com/ArnavMotwani/UnsplashSwiftUI.git",
"https://github.com/arnecs/mqttkit.git",
"https://github.com/aronbudinszky/hcaptcha-swift.git",
"https://github.com/aronbudinszky/postmark-swift.git",
"https://github.com/art-divin/Stencil.git",
"https://github.com/art-divin/StencilSwiftKit.git",
"https://github.com/art-divin/swift-driver.git",
"https://github.com/art-divin/swift-llbuild.git",
"https://github.com/art-divin/swift-package-manager.git",
"https://github.com/art-divin/swift-tools-support-core.git",
"https://github.com/artemkalinovsky/Kite.git",
"https://github.com/artemnovichkov/carting.git",
"https://github.com/artemnovichkov/fastfood.git",
"https://github.com/artemnovichkov/figma-preview.git",
"https://github.com/artemnovichkov/spasibo.git",
"https://github.com/artemnovichkov/TransitionRouter.git",
"https://github.com/ArthurGuibert/SwiftUI-MulticolorGradient.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/Asana/locheck.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/ashvardanian/StringZilla.git",
"https://github.com/ashvardanian/swift-transformers.git",
"https://github.com/askrav/yelpprovider.git",
"https://github.com/asoderman/JSONDecoder.git",
"https://github.com/assad62/SZSAuthentication.git",
"https://github.com/Ast3r10n/async-image-fetcher.git",
"https://github.com/Ast3r10n/ItalianFiscalCodeTools.git",
"https://github.com/Ast3r10n/swiftquests.git",
"https://github.com/astzweig/swift-digits.git",
"https://github.com/astzweig/swiftui-frameless-window.git",
"https://github.com/astzweig/swiftui-launcher-window.git",
"https://github.com/astzweig/swiftui-window-reference.git",
"https://github.com/aswinter90/SwiftyDrawer.git",
"https://github.com/AsyncNinja/AsyncNinja.git",
"https://github.com/AsyncSwift/AsyncLocationKit.git",
"https://github.com/AsyncSwiftKits/AsyncChannelKit.git",
"https://github.com/AsyncSwiftKits/AsyncTesting.git",
"https://github.com/AsyncSwiftKits/ConnectivityKit.git",
"https://github.com/AsyncSwiftKits/Hela.git",
"https://github.com/atacan/swift-openai-api.git",
"https://github.com/ataetgi/DynamicSearchBarPlaceholders.git",
"https://github.com/athankefalas/Stitcher.git",
"https://github.com/athankefalas/StitcherMacros.git",
"https://github.com/atierian/manifestation.git",
"https://github.com/atreat/PathSlider.git",
"https://github.com/attaswift/Attabench.git",
"https://github.com/attaswift/Benchmarking.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/OptionParser.git",
"https://github.com/attaswift/SipHash.git",
"https://github.com/attilathefun/swaggerparser.git",
"https://github.com/AudioKit/AudioKit.git",
"https://github.com/AudioKit/AudioKitEX.git",
"https://github.com/AudioKit/AudioKitUI.git",
"https://github.com/AudioKit/Controls.git",
"https://github.com/AudioKit/DevoloopAudioKit.git",
"https://github.com/AudioKit/DunneAudioKit.git",
"https://github.com/AudioKit/Flow.git",
"https://github.com/AudioKit/Keyboard.git",
"https://github.com/AudioKit/KissFFT.git",
"https://github.com/AudioKit/Microtonality.git",
"https://github.com/AudioKit/PianoRoll.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/AudioKit/Tonic.git",
"https://github.com/AudioKit/Waveform.git",
"https://github.com/audulus/Anodize.git",
"https://github.com/audulus/vger.git",
"https://github.com/augarte/SimpleLineChart.git",
"https://github.com/AuroraEditor/AEExtensionKit.git",
"https://github.com/AuroraEditor/Version-Control-Kit.git",
"https://github.com/AuroraToolkit/AuroraCore.git",
"https://github.com/aus-der-Technik/FileMonitor.git",
"https://github.com/aus-der-Technik/SwiftyNats.git",
"https://github.com/auth0/Auth0.swift.git",
"https://github.com/auth0/JWTDecode.swift.git",
"https://github.com/auth0/SimpleKeychain.git",
"https://github.com/autobahnswift/shuttle.git",
"https://github.com/automatontec/jsonconfig.git",
"https://github.com/Automattic/Gravatar-SDK-iOS.git",
"https://github.com/automerge/automerge-repo-swift.git",
"https://github.com/automerge/automerge-swift.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/AvdLee/Roadmap.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/Awesomeplayer165/PillboxView.git",
"https://github.com/aws-amplify/amplify-ios-maplibre.git",
"https://github.com/aws-amplify/amplify-swift-utils-notifications.git",
"https://github.com/aws-amplify/amplify-swift.git",
"https://github.com/aws-amplify/amplify-ui-swift-authenticator.git",
"https://github.com/aws-amplify/amplify-ui-swift-liveness.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-crt-swift.git",
"https://github.com/awslabs/aws-mobile-appsync-sdk-ios.git",
"https://github.com/awslabs/aws-sdk-swift.git",
"https://github.com/awxkee/libwebp-ios.git",
"https://github.com/awxkee/webp.swift.git",
"https://github.com/aydenp/passencoder.git",
"https://github.com/aziyan99/SwiftTfIdf.git",
"https://github.com/azone/ThemeManager.git",
"https://github.com/azooKey/AzooKeyKanaKanjiConverter.git",
"https://github.com/Azoy/common-crypto-spm.git",
"https://github.com/Azoy/Starscream.git",
"https://github.com/Azoy/Sword.git",
"https://github.com/Azoy/SwordRPC.git",
"https://github.com/Azoy/zlib-spm.git",
"https://github.com/AzureAD/microsoft-authentication-library-for-objc.git",
"https://github.com/b3ll/Decomposed.git",
"https://github.com/b3ll/Motion.git",
"https://github.com/b5i/InfiniteScrollViews.git",
"https://github.com/b5i/MMLanScan.git",
"https://github.com/b5i/YouTubeKit.git",
"https://github.com/b9swift/Action.git",
"https://github.com/b9swift/AssociatedObject.git",
"https://github.com/b9swift/Condition.git",
"https://github.com/b9swift/MulticastDelegate.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/BadhanGanesh/BJOTPViewController.git",
"https://github.com/badrinathvm/StepperView.git",
"https://github.com/BaherTamer/SwiftSafeUI.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/bangerang/swift-async-expectations.git",
"https://github.com/bangerang/swift-atoms.git",
"https://github.com/bangerang/swift-eazy.git",
"https://github.com/banghuazhao/EasyToast.git",
"https://github.com/banjun/ReactiveSSE.git",
"https://github.com/banksalad/AXSnapshot.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/barrault01/google-auth-library-swift.git",
"https://github.com/BarredEwe/MoyaNetworkClient.git",
"https://github.com/BarredEwe/Prefire.git",
"https://github.com/BarredEwe/WaterStates.git",
"https://github.com/BastiaanJansen/toast-swift.git",
"https://github.com/bastie/ASCII-Data2JavApi.git",
"https://github.com/bastie/CollisionHash.git",
"https://github.com/bastie/iban4j2JavApi.git",
"https://github.com/bastie/JavApi4Swift.git",
"https://github.com/bastie/LStXML2Code.git",
"https://github.com/bastie/ShrinkItArchive.git",
"https://github.com/basvankuijck/CommandLine.git",
"https://github.com/batoulapps/adhan-swift.git",
"https://github.com/Bayer-Group/TimberSwift.git",
"https://github.com/bayramyelec/BYCustomTextField.git",
"https://github.com/bazaarvoice/bv-ios-swift-sdk.git",
"https://github.com/BB9z/LAME-xcframework.git",
"https://github.com/bbauman1/PascalCaseKit.git",
"https://github.com/bdbergeron/apollo-ios-extensions.git",
"https://github.com/bdbergeron/RemoteImage.git",
"https://github.com/bdbergeron/Stubby.git",
"https://github.com/bdewey/AsyncSwiftGit.git",
"https://github.com/bdewey/BookKit.git",
"https://github.com/bdewey/SpacedRepetitionScheduler.git",
"https://github.com/bdewey/static-libgit2.git",
"https://github.com/bdewey/TextMarkupKit.git",
"https://github.com/bdh777psu/DRLSetlistFM.git",
"https://github.com/bdh777psu/SwiftImageMetadata.git",
"https://github.com/bdh777psu/SwiftSetlistFM.git",
"https://github.com/bdh777psu/SwiftyImageConverter.git",
"https://github.com/bdrelling/DocCMiddleware.git",
"https://github.com/bdrelling/GoatHerb.git",
"https://github.com/bdrelling/InstrumentKit.git",
"https://github.com/bdrelling/instruments.fyi.git",
"https://github.com/bdrelling/Kipple.git",
"https://github.com/bdrelling/KippleDiagnostics.git",
"https://github.com/bdrelling/KippleNetworking.git",
"https://github.com/bdrelling/KipplePlugins.git",
"https://github.com/bdrelling/KippleTools.git",
"https://github.com/bdrelling/KippleUI.git",
"https://github.com/bdrelling/PlotVapor.git",
"https://github.com/bdrelling/Structure.git",
"https://github.com/bealex/Macaroni.git",
"https://github.com/BeAppOnline/AFBilling.git",
"https://github.com/BeAppOnline/AFNetwork.git",
"https://github.com/BeAppOnline/Cancellable.git",
"https://github.com/Bearologics/HankoSwift.git",
"https://github.com/bearyinnovative/funcbot.git",
"https://github.com/beatsbears/incrementer.git",
"https://github.com/beatsbears/ipaddress_v4.git",
"https://github.com/beatt83/CryptoSwift.git",
"https://github.com/beatt83/jose-swift.git",
"https://github.com/BeauNouvelle/ShimmerSwift.git",
"https://github.com/BeauNouvelle/SimpleCheckbox.git",
"https://github.com/BeauNouvelle/SwiftyGuitarChords.git",
"https://github.com/beechtom/swiftdata-sectionedquery.git",
"https://github.com/behrang/YamlSwift.git",
"https://github.com/behrouzz/FAWS.git",
"https://github.com/BellAppLab/Defines.git",
"https://github.com/BellAppLab/Weakable.git",
"https://github.com/belozierov/SwiftCoroutine.git",
"https://github.com/beMappy/CocoaLumberjack.git",
"https://github.com/beMappy/CocoaLumberjackSwift.git",
"https://github.com/beMappy/Mappy-KeychainAccess.git",
"https://github.com/beMappy/Mappy-Swift.git",
"https://github.com/beMappy/NWWebSocket.git",
"https://github.com/beMappy/PusherSwift.git",
"https://github.com/beMappy/Reachability.swift.git",
"https://github.com/beMappy/Realm.git",
"https://github.com/beMappy/RealmSwift.git",
"https://github.com/beMappy/Swinject.git",
"https://github.com/beMappy/TweetNacl.git",
"https://github.com/beMappy/ZIPFoundation.git",
"https://github.com/ben-wheeler/SimpleSwiftUIStarRating.git",
"https://github.com/bence-t0th/CustomAlertKit.git",
"https://github.com/BenchR267/Parsel.git",
"https://github.com/bendodson/MonthYearWheelPicker.git",
"https://github.com/benedom/SwiftyCrop.git",
"https://github.com/BenEmdon/CenteredCollectionView.git",
"https://github.com/bengottlieb/marcel.git",
"https://github.com/bengottlieb/plug.git",
"https://github.com/benlmyers/GAppAuth.git",
"https://github.com/bennokress/PrettyLog.git",
"https://github.com/benoit-pereira-da-silva/CommandLine.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/Benzoate/CatPrint.swift.git",
"https://github.com/bergusman/evotor.git",
"https://github.com/berikv/BatchedCollection.git",
"https://github.com/berikv/ClampedInteger.git",
"https://github.com/berikv/DelayOutputPublisher.git",
"https://github.com/berikv/FailableSequence.git",
"https://github.com/berikv/GameCenterUI.git",
"https://github.com/berikv/SampledPublisher.git",
"https://github.com/berikv/VirtualTimeScheduler.git",
"https://github.com/BerkSpar/router-kit.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/RopeLibpq.git",
"https://github.com/bermudadigitalstudio/titan.git",
"https://github.com/bermudadigitalstudio/titanloggingswiftybeaver.git",
"https://github.com/bernndr/swift-macros.git",
"https://github.com/bernoulliconvergenator/BCTest.git",
"https://github.com/Bersaelor/KDTree.git",
"https://github.com/bersaelor/swiftybeagle.git",
"https://github.com/Bersaelor/SwiftyHYGDB.git",
"https://github.com/BertanT/SwiftUIConfettiOverlay.git",
"https://github.com/besarism/SSSSOnboarding.git",
"https://github.com/bestler/SafariView.git",
"https://github.com/besya/ascii.git",
"https://github.com/bfernandesbfs/Interceptor.git",
"https://github.com/bfernandesbfs/Responder.git",
"https://github.com/bgayman/FlipBook.git",
"https://github.com/bgerstle/scout.git",
"https://github.com/bgoncal/Starscream.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/BikeCalc/swift-measures.git",
"https://github.com/BikeCalc/swift-numeric-protocols.git",
"https://github.com/bilaalrashid/bbc-news-swift.git",
"https://github.com/billp/TermiNetwork.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-http.git",
"https://github.com/BinaryBirds/swift-template.git",
"https://github.com/binarybirds/testify.git",
"https://github.com/binarybirds/timezones.git",
"https://github.com/BinaryBirds/vapor-spec.git",
"https://github.com/binaryscraping/GetExtensions.git",
"https://github.com/binaryscraping/swift-cache.git",
"https://github.com/binaryscraping/swift-composable-keychain.git",
"https://github.com/binaryscraping/swift-log-supabase.git",
"https://github.com/binaryscraping/swift-log.git",
"https://github.com/binaryscraping/swift-sqlite.git",
"https://github.com/bircni/BetterTabBar.git",
"https://github.com/birkoof/LocationRadiusPicker.git",
"https://github.com/bitflying/SwiftKeccak.git",
"https://github.com/bitkey-oss/swiftui-niche-pieces.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/ASCKit.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",