forked from SwiftPackageIndex/PackageList
-
Notifications
You must be signed in to change notification settings - Fork 0
/
packages.json
1126 lines (1126 loc) · 54.8 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/JSONDecoder-Keypath.git",
"https://github.com/1024jp/GzipSwift.git",
"https://github.com/1024jp/WFColorCode.git",
"https://github.com/10clouds/ParticlePullToRefresh-iOS.git",
"https://github.com/1fr3dg/ResourcePackage.git",
"https://github.com/1fr3dg/SimpleEncrypter.git",
"https://github.com/1fr3dg/TextFormater.git",
"https://github.com/3a4oT/DateToolsObjC.git",
"https://github.com/3lvis/Networking.git",
"https://github.com/417-72KI/SwiftUtilities.git",
"https://github.com/AaronBratcher/ALBNoSQLDB.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/aciidb0mb3r/SwiftMQTT.git",
"https://github.com/AckeeCZ/Tezos-iOS-Dev-Kit.git",
"https://github.com/adam-fowler/aws-signer.git",
"https://github.com/adam-fowler/dictionary-encoder.git",
"https://github.com/adam-fowler/xml-encoder.git",
"https://github.com/Adorkable/Eunomia.git",
"https://github.com/Adorkable/swift-log-format-and-pipe.git",
"https://github.com/AFathi/ARVideoKit.git",
"https://github.com/ahti/SQLele.git",
"https://github.com/ahti/SQLeleCoder.git",
"https://github.com/airbnb/AloeStackView.git",
"https://github.com/airbnb/lottie-ios.git",
"https://github.com/akane/AnnotationInject.git",
"https://github.com/akane/Magellan.git",
"https://github.com/akashivskyy/QuickSwiftCheck.git",
"https://github.com/akhilcb/ACBTokenField.git",
"https://github.com/akosma/SwiftMoment.git",
"https://github.com/Alamofire/Alamofire.git",
"https://github.com/Alamofire/AlamofireImage.git",
"https://github.com/albertodebortoli/Promis.git",
"https://github.com/Alecrim/AlecrimAsyncKit.git",
"https://github.com/Alecrim/AlecrimCoreData.git",
"https://github.com/aleph7/HDF5Kit.git",
"https://github.com/aleph7/Upsurge.git",
"https://github.com/alexandertar/LASwift.git",
"https://github.com/alexaubry/HTMLString.git",
"https://github.com/alexaubry/QuerySerialization.git",
"https://github.com/alexdrone/Proxy.git",
"https://github.com/alexdrone/Store.git",
"https://github.com/alexjohnj/Requests.git",
"https://github.com/algolia/algoliasearch-client-swift.git",
"https://github.com/AliSoftware/Dip.git",
"https://github.com/allaboutapps/Fetch.git",
"https://github.com/AlTavares/Ciao.git",
"https://github.com/AlTavares/Nappa.git",
"https://github.com/AlwaysRightInstitute/cows.git",
"https://github.com/AlwaysRightInstitute/mustache",
"https://github.com/AlwaysRightInstitute/Shell",
"https://github.com/AlwaysRightInstitute/SwiftEliza.git",
"https://github.com/amatino-code/amatino-swift.git",
"https://github.com/amine2233/Reactive.git",
"https://github.com/amine2233/Result.git",
"https://github.com/amosavian/AMSMB2.git",
"https://github.com/amosavian/ExtendedAttributes.git",
"https://github.com/amosavian/FileProvider.git",
"https://github.com/amosavian/LocaleManager.git",
"https://github.com/amzn/smoke-aws-credentials.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/andersonlucasg3/Swift.Binary.git",
"https://github.com/AndrewBarba/Bluebird.swift.git",
"https://github.com/AndrewBarba/ed25519.git",
"https://github.com/AndrewBarba/lisk-swift.git",
"https://github.com/AndyQ/NFCPassportReader.git",
"https://github.com/ankurp/Dollar.git",
"https://github.com/antitypical/Result.git",
"https://github.com/antoniocasero/Arrows.git",
"https://github.com/antoniocasero/Panels.git",
"https://github.com/apollographql/apollo-ios.git",
"https://github.com/ApolloZhu/swift_qrcodejs.git",
"https://github.com/apple/swift-llbuild.git",
"https://github.com/apple/swift-log.git",
"https://github.com/apple/swift-metrics.git",
"https://github.com/apple/swift-nio-extras.git",
"https://github.com/apple/swift-nio-http2.git",
"https://github.com/apple/swift-nio-ssl.git",
"https://github.com/apple/swift-nio-transport-services.git",
"https://github.com/apple/swift-nio.git",
"https://github.com/apple/swift-package-manager.git",
"https://github.com/apple/swift-protobuf.git",
"https://github.com/apple/swift-tools-support-core.git",
"https://github.com/armadsen/ORSSerialPort.git",
"https://github.com/arn00s/caralho.git",
"https://github.com/arn00s/cariocamenu.git",
"https://github.com/artman/Signals.git",
"https://github.com/ArtSabintsev/Guitar.git",
"https://github.com/ArtSabintsev/Siren.git",
"https://github.com/asensei/AnyCodable.git",
"https://github.com/asensei/Result.git",
"https://github.com/ashleymills/Reachability.swift.git",
"https://github.com/asoderman/JSONDecoder.git",
"https://github.com/AsyncNinja/AsyncNinja.git",
"https://github.com/attaswift/BigInt.git",
"https://github.com/attaswift/BTree.git",
"https://github.com/attaswift/Deque.git",
"https://github.com/attaswift/SipHash.git",
"https://github.com/Azoy/Sword.git",
"https://github.com/Azoy/SwordRPC.git",
"https://github.com/Azure/Azure.iOS.git",
"https://github.com/Balancingrock/Ascii.git",
"https://github.com/Balancingrock/BRBON.git",
"https://github.com/Balancingrock/BRUtils.git",
"https://github.com/Balancingrock/Http.git",
"https://github.com/Balancingrock/KeyedCache.git",
"https://github.com/Balancingrock/SecureSockets.git",
"https://github.com/Balancingrock/SwifterLog.git",
"https://github.com/Balancingrock/SwifterSockets.git",
"https://github.com/Balancingrock/Swiftfire.git",
"https://github.com/BalestraPatrick/Stryng.git",
"https://github.com/banjun/JetToTheFuture.git",
"https://github.com/banjun/ReactiveSSE.git",
"https://github.com/bankex/web3swift.git",
"https://github.com/batoulapps/adhan-swift.git",
"https://github.com/bazaarvoice/BVSwift.git",
"https://github.com/bearjaw/RBSRealmBrowser.git",
"https://github.com/behrang/YamlSwift.git",
"https://github.com/BellAppLab/Defines.git",
"https://github.com/BellAppLab/Weakable.git",
"https://github.com/BenchR267/Parsel.git",
"https://github.com/Bersaelor/KDTree.git",
"https://github.com/Bersaelor/SwiftyHYGDB.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/bignerdranch/Deferred.git",
"https://github.com/Bilue/ContentFittingWebView.git",
"https://github.com/bitmark-inc/tweetnacl-swiftwrap.git",
"https://github.com/bizz84/SwiftyStoreKit.git",
"https://github.com/bloombox/Swift.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/Web3.swift.git",
"https://github.com/bourvill/OpenWeatherKit.git",
"https://github.com/bow-swift/bow.git",
"https://github.com/bricklife/JSONRPCKit.git",
"https://github.com/Brightify/ReactantUI.git",
"https://github.com/broadwaylamb/OpenCombine.git",
"https://github.com/brokenhandsio/cmark-gfm.git",
"https://github.com/brokenhandsio/leaf-error-middleware.git",
"https://github.com/brokenhandsio/SteamPress.git",
"https://github.com/brokenhandsio/vapor-oauth-fluent.git",
"https://github.com/brokenhandsio/vapor-oauth.git",
"https://github.com/brokenhandsio/VaporSecurityHeaders.git",
"https://github.com/bustoutsolutions/siesta.git",
"https://github.com/buzzfeed/MockDuck.git",
"https://github.com/cafielo/MNISTKit.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/carson-katri/swift-request.git",
"https://github.com/Carthage/Commandant.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/cbguder/CBGPromise.git",
"https://github.com/cellular/cellular-swift.git",
"https://github.com/Chandlerdea/HTTPKit.git",
"https://github.com/checkout/frames-ios.git",
"https://github.com/cherrywoods/swift-meta-serialization.git",
"https://github.com/chicio/ID3TagEditor.git",
"https://github.com/ChimeHQ/Dusk.git",
"https://github.com/ChimeHQ/NicerTouchBar.git",
"https://github.com/ChimeHQ/OperationPlus.git",
"https://github.com/ChimeHQ/Rearrange.git",
"https://github.com/ChimeHQ/SwiftLSPClient.git",
"https://github.com/ChimeHQ/WindowTreatment.git",
"https://github.com/ChouTi-Lab/ChouTi.git",
"https://github.com/chrisamanse/QRSwift.git",
"https://github.com/chrisbkarani/Sukari.git",
"https://github.com/chriseidhof/commonmark-swift.git",
"https://github.com/chrs1885/Capable.git",
"https://github.com/ckanchan/CDKOraccInterface.git",
"https://github.com/ckanchan/CDKSwiftOracc.git",
"https://github.com/cloudant/swift-cloudant.git",
"https://github.com/cmtrounce/SwURL.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/commercetools/commercetools-ios-sdk.git",
"https://github.com/contentful/contentful-persistence.swift.git",
"https://github.com/contentful/contentful.swift.git",
"https://github.com/Cosmo/HackMan.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/crspybits/SyncServerII.git",
"https://github.com/cszatma/DiscreteMathematics.git",
"https://github.com/cszatma/SwiftySweetness.git",
"https://github.com/CUITCHE/UserCaches.git",
"https://github.com/cxa/MenuItemKit.git",
"https://github.com/cxa/Piz.git",
"https://github.com/cxa/XPaver.git",
"https://github.com/czechboy0/Redbird.git",
"https://github.com/daltoniam/Starscream.git",
"https://github.com/daniel1of1/CSwiftV.git",
"https://github.com/danielgindi/Charts.git",
"https://github.com/danielr/Mokka.git",
"https://github.com/DarkySwift/KangarooStore.git",
"https://github.com/DarthStrom/Moxie.git",
"https://github.com/dastrobu/vincenty.git",
"https://github.com/davbeck/MultipartForm.git",
"https://github.com/davbeck/PersistentCacheKit.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/davedufresne/SwiftParsec.git",
"https://github.com/DaveWoodCom/XCGLogger.git",
"https://github.com/davidlivadaru/DLAngle.git",
"https://github.com/davidlivadaru/DLCoreGraphics.git",
"https://github.com/davidlivadaru/DLInterval.git",
"https://github.com/davidlivadaru/DLSuggestionsTextField.git",
"https://github.com/davidstump/SwiftPhoenixClient.git",
"https://github.com/dchakarov/TrainInformationService.git",
"https://github.com/ddddxxx/Semver.git",
"https://github.com/dduan/BitArray.git",
"https://github.com/dduan/comprehension.git",
"https://github.com/dduan/Pathos.git",
"https://github.com/Dean151/ImageUtility.git",
"https://github.com/Dean151/RecordingOverlay.git",
"https://github.com/DeclarativeHub/ReactiveKit.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/devandsev/JustSignals.git",
"https://github.com/devandsev/TapticKit.git",
"https://github.com/devandsev/YoutubeDirectLinkExtractor.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/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/dimpiax/StyleDecorator.git",
"https://github.com/DingSoung/Extension.git",
"https://github.com/dingwilson/MultiPeer.git",
"https://github.com/dingwilson/XMLParsing.git",
"https://github.com/DirectToSwift/CoreDataToSwiftUI.git",
"https://github.com/DirectToSwift/DirectToSwiftUI.git",
"https://github.com/DirectToSwift/SwiftUIRules.git",
"https://github.com/DiUS/pact-consumer-swift.git",
"https://github.com/dmytro-anokhin/core-data-model-description.git",
"https://github.com/dmytro-anokhin/url-image.git",
"https://github.com/docopt/docopt.swift.git",
"https://github.com/dougzilla32/CancelForPromiseKit.git",
"https://github.com/drewag/Decree.git",
"https://github.com/drewag/DecreeServices",
"https://github.com/drewag/Swiftlier",
"https://github.com/drewag/SwiftlierCLI",
"https://github.com/drewag/SwiftlierUIKit",
"https://github.com/dreymonde/AppFolder.git",
"https://github.com/dreymonde/Delegated.git",
"https://github.com/dreymonde/Shallows.git",
"https://github.com/dreymonde/Time.git",
"https://github.com/drichardson/SwiftyBase64.git",
"https://github.com/drmohundro/SWXMLHash.git",
"https://github.com/DuetHealth/Bedrock.git",
"https://github.com/DuetHealth/DrX.git",
"https://github.com/e-sites/Cobalt.git",
"https://github.com/e-sites/Dysprosium.git",
"https://github.com/e-sites/Einsteinium.git",
"https://github.com/e-sites/Erbium.git",
"https://github.com/e-sites/Francium.git",
"https://github.com/e-sites/Lithium.git",
"https://github.com/e-sites/Natrium.git",
"https://github.com/e-sites/Radon.git",
"https://github.com/eBardX/XestiMonitors.git",
"https://github.com/edwellbrook/Themeable.git",
"https://github.com/egeniq/BetterSheet.git",
"https://github.com/egeniq/InjectPropertyWrapper.git",
"https://github.com/elegantchaos/DictionaryCoding.git",
"https://github.com/ellneal/swift-promise",
"https://github.com/eman6576/SGCircuitBreaker.git",
"https://github.com/eman6576/SGSwiftyBind.git",
"https://github.com/eneko/CommandRegistry.git",
"https://github.com/eneko/MarkdownGenerator.git",
"https://github.com/eneko/System.git",
"https://github.com/envoy/Ambassador.git",
"https://github.com/envoy/Embassy.git",
"https://github.com/ericlewis/ActivityIndicatorView",
"https://github.com/ericlewis/BlurView",
"https://github.com/ericlewis/ProgressView",
"https://github.com/ericlewis/THOTP.git",
"https://github.com/ericlewis/URL-QueryItem",
"https://github.com/ericlewis/Valet-THOTP",
"https://github.com/erikstrottmann/Rations.git",
"https://github.com/erusaevap/DStack.git",
"https://github.com/ethanhuang13/NSAttributedStringBuilder.git",
"https://github.com/EtneteraMobile/ETBinding.git",
"https://github.com/evgenyneu/keychain-swift.git",
"https://github.com/evgenyneu/SigmaSwiftStatistics.git",
"https://github.com/evilgix/Evil.git",
"https://github.com/f-meloni/TestSpy.git",
"https://github.com/fabiorodella/FreeformJSON.git",
"https://github.com/FabioTacke/PubliclyVerifiableSecretSharing.git",
"https://github.com/FabioTacke/RingSig.git",
"https://github.com/FabrizioBrancati/BFKit-Swift.git",
"https://github.com/FabrizioBrancati/Queuer.git",
"https://github.com/fanpyi/UICollectionViewLeftAlignedLayout-Swift.git",
"https://github.com/fassko/MeteoLVProvider.git",
"https://github.com/fassko/TartuWeatherProvider.git",
"https://github.com/ferranabello/Viperit.git",
"https://github.com/FitnessKit/AntMessageProtocol.git",
"https://github.com/FitnessKit/BluetoothMessageProtocol.git",
"https://github.com/FitnessKit/DataDecoder.git",
"https://github.com/FitnessKit/FitDataProtocol.git",
"https://github.com/FitnessKit/FitnessUnits.git",
"https://github.com/FitnessKit/TcxDataProtocol.git",
"https://github.com/Fitzafful/BillboardSwiftLibrary.git",
"https://github.com/fjcaetano/RxWebSocket.git",
"https://github.com/Flinesoft/AnyMenu.git",
"https://github.com/Flinesoft/BartyCrouch.git",
"https://github.com/Flinesoft/CSVImporter.git",
"https://github.com/Flinesoft/HandySwift.git",
"https://github.com/Flinesoft/HandyUIKit.git",
"https://github.com/Flinesoft/Imperio.git",
"https://github.com/Flinesoft/Microya.git",
"https://github.com/flowtoolz/SwiftObserver.git",
"https://github.com/flowtoolz/SwiftyToolz.git",
"https://github.com/FluuxIO/XMPP.git",
"https://github.com/foffer/PwnedPasswords.git",
"https://github.com/FormatterKit/DayPeriodFormatter.git",
"https://github.com/freak4pc/CombineCocoa.git",
"https://github.com/freshOS/then.git",
"https://github.com/Frugghi/SwiftLCS.git",
"https://github.com/Fyrts/Multipart.git",
"https://github.com/garriguv/SQLiteMigrationManager.swift.git",
"https://github.com/gcharita/XMLMapper.git",
"https://github.com/GEOSwift/GEOSwift.git",
"https://github.com/getGuaka/Args.git",
"https://github.com/getGuaka/Colorizer.git",
"https://github.com/getGuaka/Env.git",
"https://github.com/getGuaka/Environ.git",
"https://github.com/getGuaka/FileUtils.git",
"https://github.com/getGuaka/Prompt.git",
"https://github.com/getGuaka/Regex.git",
"https://github.com/getGuaka/Run.git",
"https://github.com/getGuaka/StringScanner.git",
"https://github.com/GetStream/stream-swift.git",
"https://github.com/ghv/SVMPrefs.git",
"https://github.com/giginet/Crossroad.git",
"https://github.com/giginet/RxSpriteKit.git",
"https://github.com/Giphy/giphy-ios-sdk-core.git",
"https://github.com/gitvalue/Navigation.git",
"https://github.com/gitvalue/Pooling.git",
"https://github.com/gitvalue/RollView.git",
"https://github.com/gjeck/PathTemplate.swift.git",
"https://github.com/gobetti/RxCocoaNetworking.git",
"https://github.com/google/functional-objc.git",
"https://github.com/google/open-location-code-swift.git",
"https://github.com/google/promises.git",
"https://github.com/GraphQLSwift/Graphiti.git",
"https://github.com/GraphQLSwift/GraphQL.git",
"https://github.com/graycampbell/GCCountryPicker.git",
"https://github.com/gringoireDM/EnumKit.git",
"https://github.com/gringoireDM/RxEnumKit.git",
"https://github.com/groue/GRDB.swift.git",
"https://github.com/groue/GRMustache.swift.git",
"https://github.com/grpc/grpc-swift.git",
"https://github.com/gspd-mobi/rage-ios.git",
"https://github.com/guseducampos/JustNetworking.git",
"https://github.com/hackiftekhar/IQKeyboardManager.git",
"https://github.com/halcyonmobile/ReleaseRadar.git",
"https://github.com/halcyonmobile/RestBird.git",
"https://github.com/hallee/halpers.git",
"https://github.com/hallee/micro-playground-provider.git",
"https://github.com/hallee/vapor-simple-file-logger.git",
"https://github.com/happn-tech/BMO.git",
"https://github.com/happn-tech/CollectionLoader.git",
"https://github.com/happn-tech/KVObserver.git",
"https://github.com/happn-tech/RecursiveSyncDispatch.git",
"https://github.com/happn-tech/RetryingOperation.git",
"https://github.com/happn-tech/SemiSingleton.git",
"https://github.com/happn-tech/URLRequestOperation.git",
"https://github.com/hectr/swift-elementary-cycles.git",
"https://github.com/hectr/swift-idioms.git",
"https://github.com/hectr/swift-regex.git",
"https://github.com/hectr/swift-shell-interface.git",
"https://github.com/hectr/swift-stream-reader.git",
"https://github.com/HeroTransitions/Hero.git",
"https://github.com/heyzooi/IPData.git",
"https://github.com/hironytic/Eventitic.git",
"https://github.com/hirotakan/MessagePacker.git",
"https://github.com/hmlongco/RxSwiftForms.git",
"https://github.com/holiday-jp/holiday_jp-swift.git",
"https://github.com/honeycombio/LibHoney-Cocoa.git",
"https://github.com/honghaoz/Ji.git",
"https://github.com/hooliooo/Astral.git",
"https://github.com/hooliooo/BFAstral.git",
"https://github.com/hootsuite/emit.git",
"https://github.com/httpswift/swifter.git",
"https://github.com/huri000/SwiftEntryKit.git",
"https://github.com/huynguyen-n/GhostTyping.git",
"https://github.com/hyerra/OpenAQKit.git",
"https://github.com/hyperoslo/Cache.git",
"https://github.com/hyugit/EllipticCurve.git",
"https://github.com/IainSmith/travisClient.git",
"https://github.com/iAmrSalman/Dots.git",
"https://github.com/iAmrSalman/StorageManager.git",
"https://github.com/IBAnimatable/IBAnimatable.git",
"https://github.com/IBDecodable/IBDecodable.git",
"https://github.com/IBDecodable/IBGraph.git",
"https://github.com/IBDecodable/IBLinter.git",
"https://github.com/IBM-Swift/BlueCryptor.git",
"https://github.com/IBM-Swift/BlueRSA.git",
"https://github.com/IBM-Swift/BlueSignals.git",
"https://github.com/IBM-Swift/BlueSocket.git",
"https://github.com/IBM-Swift/BlueSSLService.git",
"https://github.com/IBM-Swift/CircuitBreaker.git",
"https://github.com/IBM-Swift/Kitura-Credentials.git",
"https://github.com/IBM-Swift/Kitura-CredentialsFacebook.git",
"https://github.com/IBM-Swift/Kitura-CredentialsGithub.git",
"https://github.com/IBM-Swift/Kitura-CredentialsGoogle.git",
"https://github.com/IBM-Swift/Kitura-CredentialsHTTP.git",
"https://github.com/IBM-Swift/Kitura-CredentialsJWT.git",
"https://github.com/IBM-Swift/Kitura-net.git",
"https://github.com/IBM-Swift/Kitura.git",
"https://github.com/IBM-Swift/KituraContracts.git",
"https://github.com/IBM-Swift/KituraKit.git",
"https://github.com/IBM-Swift/LoggerAPI.git",
"https://github.com/IBM-Swift/swift-html-entities.git",
"https://github.com/IBM-Swift/Swift-JWT.git",
"https://github.com/IBM-Swift/Swift-Kuery-ORM.git",
"https://github.com/IBM-Swift/Swift-Kuery-PostgreSQL.git",
"https://github.com/IBM-Swift/Swift-Kuery-SQLite.git",
"https://github.com/IBM-Swift/Swift-Kuery.git",
"https://github.com/IBM-Swift/SwiftKueryMySQL.git",
"https://github.com/IBM-Swift/SwiftyRequest.git",
"https://github.com/icapps/ios-stella.git",
"https://github.com/iCell/CryptoCurrency.git",
"https://github.com/igor-makarov/BeaconKit.git",
"https://github.com/Igor-Palaguta/MotoSwift.git",
"https://github.com/ikesyo/Himotoki.git",
"https://github.com/Ikiga/IkigaJSON.git",
"https://github.com/ilyapuchka/SwiftNIOMock.git",
"https://github.com/imbue11235/EventHub.git",
"https://github.com/imex94/NetworkKit.git",
"https://github.com/IngmarStein/SMJobKit.git",
"https://github.com/innocarpe/TabNavigable.git",
"https://github.com/Interactive-Studio/ISPageControl.git",
"https://github.com/Interactive-Studio/TransitionableTab.git",
"https://github.com/Interactive-Studio/Windless.git",
"https://github.com/ishkawa/APIKit.git",
"https://github.com/ivlevAstef/DITranquillity.git",
"https://github.com/ivlevAstef/SwiftLazy.git",
"https://github.com/iZettle/Flow.git",
"https://github.com/iZettle/Lift.git",
"https://github.com/jakeheis/SwiftCLI.git",
"https://github.com/JamitLabs/Accio.git",
"https://github.com/JamitLabs/MungoHealer.git",
"https://github.com/jarrodparkes/DominoKit.git",
"https://github.com/jasl/RouterX.git",
"https://github.com/jasperblues/XcodeEditor.git",
"https://github.com/jawziyya/fawaid-models.git",
"https://github.com/jdcloud-api/jdcloud-sdk-ios.git",
"https://github.com/jdhealy/PrettyColors.git",
"https://github.com/jedisct1/swift-sodium.git",
"https://github.com/jeffctown/xcframework.git",
"https://github.com/jeffctown/xcutility.git",
"https://github.com/JellyfishProject/JellyfishKit.git",
"https://github.com/jemmons/MyNameIsURL.git",
"https://github.com/JensRavens/Interstellar.git",
"https://github.com/jianstm/Once.git",
"https://github.com/jianstm/Schedule.git",
"https://github.com/jianstm/SuperCache.git",
"https://github.com/Jimmy-Lee/Networking.git",
"https://github.com/jjochen/JJFloatingActionButton.git",
"https://github.com/JKalash/Croc.git",
"https://github.com/jkandzi/Progress.swift.git",
"https://github.com/jkolb/FieryCrucible.git",
"https://github.com/jkolb/FranticApparatus.git",
"https://github.com/jnewc/Cosmic.git",
"https://github.com/johankool/Drawer.git",
"https://github.com/JohnEstropia/CoreStore.git",
"https://github.com/johnfairh/RubyGateway.git",
"https://github.com/johnfairh/TMLPersistentContainer.git",
"https://github.com/johnsundell/files.git",
"https://github.com/johnsundell/require.git",
"https://github.com/JohnSundell/ShellOut.git",
"https://github.com/JohnSundell/Splash.git",
"https://github.com/JohnSundell/Unbox.git",
"https://github.com/JohnSundell/Wrap.git",
"https://github.com/jonasman/TeslaSwift.git",
"https://github.com/JonathanDowning/SwiftMETAR.git",
"https://github.com/JosephDuffy/Partial.git",
"https://github.com/jpsim/SourceKitten.git",
"https://github.com/jpsim/Yams.git",
"https://github.com/JuanjoArreola/AllCache.git",
"https://github.com/JuanjoArreola/Apic.git",
"https://github.com/JuanjoArreola/AsyncRequest.git",
"https://github.com/JuanjoArreola/KeychainStore.git",
"https://github.com/JuanjoArreola/Logg.git",
"https://github.com/JuanjoArreola/MockingJ.git",
"https://github.com/Juanpe/SkeletonView.git",
"https://github.com/junkpiano/Kiri",
"https://github.com/junkpiano/scientist.git",
"https://github.com/juri/graphqler.git",
"https://github.com/JustHTTP/Just.git",
"https://github.com/k-o-d-e-n/CGLayout.git",
"https://github.com/kaandedeoglu/KDCircularProgress.git",
"https://github.com/kandelvijaya/FastDiff.git",
"https://github.com/kareman/FileSmith.git",
"https://github.com/kareman/Moderator.git",
"https://github.com/kareman/SwiftShell.git",
"https://github.com/karlisl/simplemdm-swift.git",
"https://github.com/kasei/kineo-endpoint.git",
"https://github.com/kasei/kineo.git",
"https://github.com/kasei/swift-serd.git",
"https://github.com/kasei/swift-sparql-syntax.git",
"https://github.com/Kawoou/AnyDate.git",
"https://github.com/kawoou/Deli.git",
"https://github.com/kean/FutureX.git",
"https://github.com/kean/NaiveDate.git",
"https://github.com/kean/Nuke.git",
"https://github.com/kellanburket/franz.git",
"https://github.com/kernandreas/TypesafeUserDefaults.git",
"https://github.com/khanlou/Promise.git",
"https://github.com/khoi/fuzzy-swift.git",
"https://github.com/KieranHarper/Yakka.git",
"https://github.com/kiliankoe/CLISpinner.git",
"https://github.com/kiliankoe/Corkboard.git",
"https://github.com/kiliankoe/D20.git",
"https://github.com/kiliankoe/DVB.git",
"https://github.com/kiliankoe/gausskrueger.git",
"https://github.com/kiliankoe/Karte.git",
"https://github.com/kiliankoe/Nextbike.git",
"https://github.com/kiliankoe/ParkKit.git",
"https://github.com/kiliankoe/pushover.git",
"https://github.com/kiliankoe/StuWeDD.git",
"https://github.com/kiliankoe/SwiftLibrary.git",
"https://github.com/kinfoundation/kin-util-ios.git",
"https://github.com/kinfoundation/StellarKit.git",
"https://github.com/kishikawakatsumi/IBPCollectionViewCompositionalLayout.git",
"https://github.com/kishikawakatsumi/KeychainAccess.git",
"https://github.com/kishikawakatsumi/Kuery.git",
"https://github.com/kittymo/MoRegex.git",
"https://github.com/kjoneandrei/BRPageControl.git",
"https://github.com/KKBOX/OpenAPI-Swift.git",
"https://github.com/klundberg/CopyOnWrite.git",
"https://github.com/klundberg/Weakify.git",
"https://github.com/konradzdunczyk/KZPeselValidator.git",
"https://github.com/KristopherGBaker/libcmark_gfm.git",
"https://github.com/KristopherGBaker/Maaku.git",
"https://github.com/krzysztofzablocki/Difference.git",
"https://github.com/krzyzanowskim/CryptoSwift.git",
"https://github.com/Kuniwak/MemoryLeakTestKit.git",
"https://github.com/Kuniwak/MirrorDiffKit.git",
"https://github.com/Kuniwak/MultipartFormDataKit.git",
"https://github.com/kylebrowning/APNSwift.git",
"https://github.com/kylef/Commander.git",
"https://github.com/kylef/fd.git",
"https://github.com/kylef/JSONWebToken.swift.git",
"https://github.com/kylef/PathKit.git",
"https://github.com/kylef/Spectre",
"https://github.com/kylef/URITemplate.swift.git",
"https://github.com/ladislas/SwiftEventCenter.git",
"https://github.com/layoutBox/PinLayout.git",
"https://github.com/leacode/Earth.git",
"https://github.com/leavez/Mappable.git",
"https://github.com/lexrus/MMDB-Swift.git",
"https://github.com/liam923/MathKit.git",
"https://github.com/lightstep/opentracing-swift.git",
"https://github.com/lionheart/KeyboardAdjuster.git",
"https://github.com/Liquidsoul/Sourcery-AutoJSONSerializable.git",
"https://github.com/ljcoder2015/LJTool.git",
"https://github.com/loopwxservices/WXKDarkSky.git",
"https://github.com/lorentey/GlueKit.git",
"https://github.com/lostatseajoshua/SwiftExpression.git",
"https://github.com/LowKostKustomz/StatusAlert.git",
"https://github.com/lucas34/LazyArray.git",
"https://github.com/lucas34/SwiftQueue.git",
"https://github.com/LuizZak/JelloSwift.git",
"https://github.com/lukewar/Errands.git",
"https://github.com/lvsti/MockSix.git",
"https://github.com/lvsti/NimbleMockSix.git",
"https://github.com/Lyft/Kronos.git",
"https://github.com/lyft/mapper.git",
"https://github.com/mac-cain13/R.swift.git",
"https://github.com/MadeByHecho/Miles.git",
"https://github.com/magyarosibotond/AttributedStringTag.git",
"https://github.com/MakeAWishFoundation/SwiftyMocky.git",
"https://github.com/malcommac/FlowKit.git",
"https://github.com/malcommac/Hydra.git",
"https://github.com/malcommac/ImageSizeFetcher.git",
"https://github.com/malcommac/Repeat.git",
"https://github.com/malcommac/SwiftDate.git",
"https://github.com/malcommac/SwiftLocation.git",
"https://github.com/malcommac/SwiftRichString.git",
"https://github.com/malcommac/SwiftScanner.git",
"https://github.com/malcommac/UAParserSwift.git",
"https://github.com/malcommac/UIWindowTransitions.git",
"https://github.com/manuelCarlos/Easing.git",
"https://github.com/mapbox/turf-swift.git",
"https://github.com/marmelroy/PhoneNumberKit.git",
"https://github.com/marshallxxx/KeyPathMapper.git",
"https://github.com/marty-suzuki/Prex.git",
"https://github.com/marty-suzuki/SABlurImageView.git",
"https://github.com/MastodonKit/MastodonKit.git",
"https://github.com/MatteoBatti/Pager.git",
"https://github.com/matterinc/web3swift.git",
"https://github.com/mattpolzin/JSONAPI.git",
"https://github.com/mattpolzin/Poly.git",
"https://github.com/mattt/Surge.git",
"https://github.com/MaxDesiatov/CoreXLSX.git",
"https://github.com/MaxDesiatov/XMLCoder.git",
"https://github.com/maximbilan/SwiftGoogleTranslate.git",
"https://github.com/maximbilan/SwiftOxfordAPI.git",
"https://github.com/maxxfrazer/ARKit-FocusNode",
"https://github.com/maxxfrazer/ARKit-SCNPath",
"https://github.com/maxxfrazer/ARKit-SmartHitTest",
"https://github.com/maxxfrazer/FocusEntity",
"https://github.com/maxxfrazer/SceneKit-Bezier-Animations",
"https://github.com/maxxfrazer/SceneKit-SCNLine",
"https://github.com/maxxfrazer/Swift-Graph3D",
"https://github.com/mcfedr/DNS.git",
"https://github.com/Meniny/Parade.git",
"https://github.com/Meniny/Zipper.git",
"https://github.com/mentalfaculty/LLVS.git",
"https://github.com/metova/MetovaJSONCodable.git",
"https://github.com/mgrebenets/SwiftScriptRunner.git",
"https://github.com/michaelhenry/RxRetroSwift.git",
"https://github.com/micheltlutz/MLAudioPlayer.git",
"https://github.com/micheltlutz/MLLineChart.git",
"https://github.com/micheltlutz/MLQuestionCheck.git",
"https://github.com/micheltlutz/MLStarRating.git",
"https://github.com/micheltlutz/MLTontiatorView.git",
"https://github.com/micheltlutz/MLVideoPlayer.git",
"https://github.com/Mieraidihaimu/MMFoundation_swift.git",
"https://github.com/MihaelIsaev/SwifQL.git",
"https://github.com/mikaoj/EnigmaKit.git",
"https://github.com/mindbody/Conduit.git",
"https://github.com/MiniDOM/MiniDOM.git",
"https://github.com/minikin/ItemsDataSource.git",
"https://github.com/miximka/MimeParser.git",
"https://github.com/miyass/VHProgressBar.git",
"https://github.com/MKGitHub/JSONX.git",
"https://github.com/MKGitHub/MessageBox-Concept.git",
"https://github.com/MKGitHub/MKBlockQueue.git",
"https://github.com/MKGitHub/UIPheonix.git",
"https://github.com/MLSDev/LoadableViews.git",
"https://github.com/MLSDev/TRON.git",
"https://github.com/mobileforming/WiremockClient.git",
"https://github.com/modswift/Apache.git",
"https://github.com/modswift/ExExpress.git",
"https://github.com/Molbie/Outlaw.git",
"https://github.com/mongodb/mongo-swift-driver.git",
"https://github.com/mongodb/swift-mongo-mobile.git",
"https://github.com/moozzyk/SignalR-Client-Swift.git",
"https://github.com/mordil/swift-redis-nio-client.git",
"https://github.com/morishin/RFC3339DateFormatter.git",
"https://github.com/Moya/Moya.git",
"https://github.com/mpangburn/FunctionKit.git",
"https://github.com/mryu87/UInt256.git",
"https://github.com/mshibanami/BiometryTypeBugWorkaround.git",
"https://github.com/mt-hodaka/CodableDefaults.git",
"https://github.com/mtynior/ColorizeSwift.git",
"https://github.com/mukeshydv/Inflect.git",
"https://github.com/muukii/Bulk.git",
"https://github.com/muukii/JAYSON.git",
"https://github.com/mw99/DataCompression.git",
"https://github.com/mw99/OhhAuth.git",
"https://github.com/mxcl/AppUpdater",
"https://github.com/mxcl/Path.swift",
"https://github.com/mxcl/PromiseKit.git",
"https://github.com/mxcl/Version",
"https://github.com/myfreeweb/SwiftCBOR.git",
"https://github.com/namics/swift-skribent.git",
"https://github.com/naoty/Timepiece.git",
"https://github.com/nearfri/Strix.git",
"https://github.com/Neo4j-Swift/bolt-swift.git",
"https://github.com/Neo4j-Swift/Neo4j-Swift.git",
"https://github.com/neo4j-swift/PackStream-Swift.git",
"https://github.com/nerdishbynature/octokit.swift.git",
"https://github.com/nerdishbynature/RequestKit.git",
"https://github.com/Nextdoor/corridor.git",
"https://github.com/ngtk/LoggerKit.git",
"https://github.com/nicklockwood/Consumer.git",
"https://github.com/nicklockwood/Euclid.git",
"https://github.com/nicklockwood/Expression.git",
"https://github.com/nicklockwood/Sprinter.git",
"https://github.com/nicklockwood/SwiftFormat.git",
"https://github.com/nicklockwood/VectorMath.git",
"https://github.com/Nike-Inc/Elevate.git",
"https://github.com/Nike-Inc/Willow.git",
"https://github.com/nikola-mladenovic/AwsSwiftDynamoDBsdk.git",
"https://github.com/nikola-mladenovic/AwsSwiftLambdaSdk.git",
"https://github.com/nikola-mladenovic/AwsSwiftSign.git",
"https://github.com/nikstar/CLInterface.git",
"https://github.com/nmdias/FeedKit.git",
"https://github.com/nodes-ios/Serpent.git",
"https://github.com/nolanw/HTMLReader.git",
"https://github.com/nonameplum/Changeable.git",
"https://github.com/NoodleOfDeath/PastaParser.git",
"https://github.com/NordicSemiconductor/IOS-Pods-DFU-Library.git",
"https://github.com/norio-nomura/Base32.git",
"https://github.com/norio-nomura/ObjectEncoder.git",
"https://github.com/NoTests/RxFeedback.swift.git",
"https://github.com/NozeIO/Noze.io.git",
"https://github.com/NozeIO/redi-s.git",
"https://github.com/NozeIO/swift-nio-irc-eliza.git",
"https://github.com/NozeIO/swift-nio-irc-server.git",
"https://github.com/NozeIO/swift-nio-irc-webclient.git",
"https://github.com/nschum/SwiftHamcrest.git",
"https://github.com/nsomar/Guaka.git",
"https://github.com/nvzqz/FileKit.git",
"https://github.com/OAuthSwift/OAuthSwift.git",
"https://github.com/OAuthSwift/OAuthSwiftAlamofire.git",
"https://github.com/objcio/libpq.git",
"https://github.com/objcio/md5.git",
"https://github.com/objcio/tiny-networking.git",
"https://github.com/objective-audio/SwiftFlowGraph.git",
"https://github.com/ole/PropertyWrappers.git",
"https://github.com/omaralbeik/UserDefaultsStore.git",
"https://github.com/OneAfternoon/Ward.git",
"https://github.com/onevcat/Kingfisher.git",
"https://github.com/onevcat/Rainbow.git",
"https://github.com/onmyway133/SwiftHash.git",
"https://github.com/optonaut/ActiveLabel.swift.git",
"https://github.com/Otbivnoe/CodableAlamofire.git",
"https://github.com/p2/OAuth2.git",
"https://github.com/palle-k/Covfefe.git",
"https://github.com/ParkGwangBeom/Sheet.git",
"https://github.com/pascalbros/IotaC.git",
"https://github.com/patchthecode/JTAppleCalendar.git",
"https://github.com/patgoley/Configurate.git",
"https://github.com/paulyhedral/ThemingKit.git",
"https://github.com/paulz/ImageCoordinateSpace.git",
"https://github.com/paywithcurl/Holmes.git",
"https://github.com/pducks32/Geotum.git",
"https://github.com/pducks32/Hamilton.git",
"https://github.com/pducks32/Pailead.git",
"https://github.com/pedantix/TimedCache.git",
"https://github.com/philip-bui/s2-geometry-swift.git",
"https://github.com/phimage/CallbackURLKit.git",
"https://github.com/phimage/MomXML.git",
"https://github.com/phimage/morphi.git",
"https://github.com/phimage/Prephirences.git",
"https://github.com/phimage/ValueTransformerKit.git",
"https://github.com/phimage/XcodeProjKit.git",
"https://github.com/pietropizzi/GridStack.git",
"https://github.com/piknotech/SFSafeSymbols.git",
"https://github.com/pirishd/InstantMock.git",
"https://github.com/pkrll/SwiftArgs.git",
"https://github.com/pksprojects/ElasticSwift.git",
"https://github.com/pmusolino/Wormholy.git",
"https://github.com/poetmountain/MotionMachine.git",
"https://github.com/pointfreeco/swift-nonempty.git",
"https://github.com/pointfreeco/swift-overture.git",
"https://github.com/pointfreeco/swift-snapshot-testing.git",
"https://github.com/pointfreeco/swift-tagged.git",
"https://github.com/pointfreeco/swift-validated.git",
"https://github.com/PoissonBallon/DataModelKit.git",
"https://github.com/PoissonBallon/GoogleStaticMapsKit.git",
"https://github.com/polidea/RxBluetoothKit.git",
"https://github.com/ponyboy47/ConfigParser.git",
"https://github.com/ponyboy47/Downpour.git",
"https://github.com/ponyboy47/ErrNo.git",
"https://github.com/ponyboy47/FFProbe.git",
"https://github.com/ponyboy47/inotify.git",
"https://github.com/ponyboy47/Plex-Monitr.git",
"https://github.com/ponyboy47/Termios.git",
"https://github.com/ponyboy47/TrailBlazer.git",
"https://github.com/ponyboy47/TranscodeVideo.git",
"https://github.com/postmates/PMJSON.git",
"https://github.com/poulpix/PXGoogleDirections.git",
"https://github.com/priore/SOAPEngine.git",
"https://github.com/ProcedureKit/ProcedureKit.git",
"https://github.com/Pronto-am/MobileCMS-iOS-SDK.git",
"https://github.com/provideservices/provide-swift.git",
"https://github.com/Qmerce/ios-sdk.git",
"https://github.com/Qminder/swift-api.git",
"https://github.com/qoncept/TensorSwift.git",
"https://github.com/quanvo87/GroupWork.git",
"https://github.com/Quick/Nimble.git",
"https://github.com/Quick/Quick.git",
"https://github.com/quver/SlidableImage.git",
"https://github.com/r-dent/EliminationMenu.git",
"https://github.com/ra1028/DifferenceKit.git",
"https://github.com/RACCommunity/FlexibleDiff.git",
"https://github.com/radex/SwiftyUserDefaults.git",
"https://github.com/raphaelmor/Polyline.git",
"https://github.com/rauhul/api-manager.git",
"https://github.com/raymccrae/swift-jsonpatch.git",
"https://github.com/ReactiveCocoa/ReactiveSwift.git",
"https://github.com/ReactiveX/RxSwift.git",
"https://github.com/ReactorKit/ReactorKit.git",
"https://github.com/realm/SwiftLint.git",
"https://github.com/RedMadRobot/input-mask-ios.git",
"https://github.com/Reflejo/LambdaKit.git",
"https://github.com/regexident/Gestalt.git",
"https://github.com/regexident/ScopedDefaults.git",
"https://github.com/remind101/AutoGraph.git",
"https://github.com/Restofire/Restofire.git",
"https://github.com/ReSwift/ReSwift-Router.git",
"https://github.com/ReSwift/ReSwift.git",
"https://github.com/rexmas/Crust.git",
"https://github.com/rexmas/JSONValue.git",
"https://github.com/richardpiazza/BZipCompression.git",
"https://github.com/richardpiazza/CodeQuickKit.git",
"https://github.com/richardpiazza/DynuREST.git",
"https://github.com/richardpiazza/GraphPoint.git",
"https://github.com/richardpiazza/LCARSDisplayKit.git",
"https://github.com/richardpiazza/MiseEnPlace.git",
"https://github.com/richardpiazza/SOSwift.git",
"https://github.com/richardpiazza/SOSwiftVocabulary.git",
"https://github.com/richardpiazza/XCServerAPI.git",
"https://github.com/richardpiazza/XCServerCoreData.git",
"https://github.com/rinold/ProxyResolver.git",
"https://github.com/rizumita/CTColorPicker.git",
"https://github.com/rnapier/RNCryptor.git",
"https://github.com/robb/Cartography.git",
"https://github.com/roberthein/Ease.git",
"https://github.com/roberthein/Observable.git",
"https://github.com/roberthein/TinyConstraints.git",
"https://github.com/robrix/Prelude.git",
"https://github.com/RockStarSwift/RockStar.git",
"https://github.com/roland19deschain/ZenSwift.git",
"https://github.com/ronanrodrigo/Frisbee.git",
"https://github.com/rwbutler/Cheats.git",
"https://github.com/rwbutler/Connectivity.git",
"https://github.com/rwbutler/FeatureFlags.git",
"https://github.com/rwbutler/Hash.git",
"https://github.com/RxSwiftCommunity/Action.git",
"https://github.com/RxSwiftCommunity/RxAlamofire.git",
"https://github.com/RxSwiftCommunity/RxContacts.git",
"https://github.com/RxSwiftCommunity/RxCoreLocation.git",
"https://github.com/RxSwiftCommunity/RxDataSources.git",
"https://github.com/RxSwiftCommunity/RxGesture.git",
"https://github.com/RxSwiftCommunity/RxKeyboard.git",
"https://github.com/s1ddok/Cpng.git",
"https://github.com/sacOO7/socketcluster-client-swift.git",
"https://github.com/Saelyria/Artemis.git",
"https://github.com/safx/Cron-Swift.git",
"https://github.com/Sajjon/EllipticCurve.git",
"https://github.com/saku/EnhancedCircleImageView.git",
"https://github.com/sammy-SC/GPX.git",
"https://github.com/samnung/Weekday.swift.git",
"https://github.com/satishbabariya/SwiftyContacts.git",
"https://github.com/sbxcloud/sbxcloudswift.git",
"https://github.com/scaraux/Swift-Porter-Stemmer-2.git",
"https://github.com/SCENEE/FloatingPanel.git",
"https://github.com/schayes04/SupportEmail.git",
"https://github.com/scinfu/SwiftSoup.git",
"https://github.com/scottrhoyt/SwiftyTextTable.git",
"https://github.com/scribd/Weaver.git",
"https://github.com/SD10/GitDiffSwift.git",
"https://github.com/sendyhalim/Swime.git",
"https://github.com/serhii-londar/BaseAPI.git",
"https://github.com/serhii-londar/GithubAPI.git",
"https://github.com/shamatar/EthereumABI.git",
"https://github.com/shamatar/EthereumAddress.git",
"https://github.com/shamatar/scrypt-cryptoswift.git",
"https://github.com/shamatar/secp256k1_swift.git",
"https://github.com/shamatar/SwiftRLP.git",
"https://github.com/sharplet/Regex.git",
"https://github.com/shial4/SCountLabel.git",
"https://github.com/shial4/SLazeCoreData.git",
"https://github.com/shial4/SLazeKit.git",
"https://github.com/shial4/SListView.git",
"https://github.com/shial4/SWindow.git",
"https://github.com/ShitLib/shitlib-swift.git",
"https://github.com/shotastage/Fileable.swift.git",
"https://github.com/siegesmund/SwiftDDP.git",
"https://github.com/simonlee2/PlaceholderKit.git",
"https://github.com/sindresorhus/CircularProgress.git",
"https://github.com/sindresorhus/Defaults.git",
"https://github.com/sindresorhus/DockProgress.git",
"https://github.com/sindresorhus/Preferences.git",
"https://github.com/skunkmb/swift-zulip-api.git",
"https://github.com/SlackKit/SKClient.git",
"https://github.com/SlackKit/SKCore.git",
"https://github.com/SlackKit/SKRTMAPI.git",
"https://github.com/SlackKit/SKServer.git",
"https://github.com/SlackKit/SKWebAPI.git",
"https://github.com/SlackKit/SlackKit.git",
"https://github.com/slightair/EventBottle.git",
"https://github.com/SnapKit/SnapKit.git",
"https://github.com/soffes/HotKey.git",
"https://github.com/sonsongithub/HTMLSpecialCharacters.git",
"https://github.com/soucolline/ZLogger.git",
"https://github.com/spacenation/grid",
"https://github.com/speee/OreOre.git",
"https://github.com/spropensource/ArchitectureComponents.git",
"https://github.com/square/StringTemplate.git",
"https://github.com/square/Valet.git",
"https://github.com/ssamadgh/ModelAssistant.git",
"https://github.com/stablekernel/DataViewable.git",
"https://github.com/StatusQuo/InjectKit.git",
"https://github.com/staykids/Cully.git",
"https://github.com/SteadyAction/DesignableView.git",
"https://github.com/SteadyAction/EtherWalletKit.git",
"https://github.com/stefanrenne/SwiftErrorHandler.git",
"https://github.com/stencilproject/Stencil.git",
"https://github.com/stendahls/Taskig.git",
"https://github.com/stenographer/stenographer.git",
"https://github.com/stephencelis/SQLite.swift.git",
"https://github.com/stoneburner/ShowSomeProgress.git",
"https://github.com/sunshinejr/Moya-ModelMapper.git",
"https://github.com/superk589/RijndaelSwift.git",
"https://github.com/svdo/swift-netutils.git",
"https://github.com/svdo/swift-RichString.git",
"https://github.com/swhitty/DictionaryDecoder.git",
"https://github.com/swhitty/SwiftDraw.git",
"https://github.com/swift-aws/aws-sdk-appleos.git",
"https://github.com/swift-aws/aws-sdk-swift.git",
"https://github.com/swift-server/async-http-client.git",
"https://github.com/SwiftBond/Bond.git",
"https://github.com/swiftbrew/Swiftbrew.git",
"https://github.com/SwifterSwift/SwifterSwift.git",
"https://github.com/SwiftGen/StencilSwiftKit.git",
"https://github.com/SwiftGFX/SwiftMath.git",
"https://github.com/SwiftGL/Image.git",
"https://github.com/SwiftGL/Math.git",
"https://github.com/SwiftGL/OpenGL.git",
"https://github.com/SwiftNIOExtras/swift-nio-irc.git",
"https://github.com/SwiftNIOExtras/swift-nio-redis.git",
"https://github.com/SwiftObjects/SwiftObjects.git",
"https://github.com/swiftrex/SwiftRex.git",
"https://github.com/SwiftScream/URITemplate.git",
"https://github.com/SwiftStudies/OysterKit.git",
"https://github.com/SwiftUIX/SwiftUIX.git",
"https://github.com/SwiftWebResources/jQuery-Swift",
"https://github.com/SwiftWebResources/SemanticUI-Swift.git",
"https://github.com/swiftwebui/SwiftWebUI.git",
"https://github.com/SwiftyBeaver/AES256CBC.git",
"https://github.com/SwiftyBeaver/SBObjectiveCWrapper.git",
"https://github.com/SwiftyBeaver/SwiftyBeaver.git",
"https://github.com/SwiftyJSON/SwiftyJSON.git",
"https://github.com/SwiftyLinkerKit/LinkerKitIRCBot.git",
"https://github.com/SwiftyLinkerKit/SwiftyLinkerKit.git",
"https://github.com/SwiftyLinkerKit/SwiftyTM1637.git",
"https://github.com/SwingDev/RxSwiftAutoRetry.git",
"https://github.com/Swinject/Swinject.git",
"https://github.com/tadija/AEAccordion.git",
"https://github.com/tadija/AEAppVersion.git",
"https://github.com/tadija/AEConicalGradient.git",
"https://github.com/tadija/AEConsole.git",
"https://github.com/tadija/AECoreDataUI.git",
"https://github.com/tadija/AEImage.git",
"https://github.com/tadija/AELog.git",
"https://github.com/tadija/AENetwork.git",
"https://github.com/tadija/AERecord.git",
"https://github.com/tadija/AETransition.git",
"https://github.com/tadija/AEViewModel.git",
"https://github.com/tadija/AEXML.git",
"https://github.com/TantePata/SimpleCoreData.git",
"https://github.com/tattn/MoreCodable.git",
"https://github.com/tcldr/Entwine.git",
"https://github.com/temoki/TortoiseGraphics.git",
"https://github.com/tevelee/Eval.git",
"https://github.com/tevelee/Tuxedo.git",
"https://github.com/thedavidharris/Futura.git",
"https://github.com/thefuntasty/CellKit.git",
"https://github.com/thefuntasty/FTAPIKit.git",
"https://github.com/thefuntasty/FuntastyKit.git",
"https://github.com/thii/FontAwesome.swift.git",
"https://github.com/thii/HTTPMethod.git",
"https://github.com/thii/SwiftHEXColors.git",
"https://github.com/thii/Unxip.git",