forked from SwiftPackageIndex/PackageList
-
Notifications
You must be signed in to change notification settings - Fork 0
/
packages.json
3452 lines (3452 loc) · 170 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/0x7fs/countedset.git",
"https://github.com/0xdeadp00l/bech32.git",
"https://github.com/1024jp/GzipSwift.git",
"https://github.com/1024jp/WFColorCode.git",
"https://github.com/10clouds/ParticlePullToRefresh-iOS.git",
"https://github.com/123flo321/pogoprotos-swift.git",
"https://github.com/123flo321/realdevicemap.git",
"https://github.com/1fr3dg/ResourcePackage.git",
"https://github.com/1fr3dg/SimpleEncrypter.git",
"https://github.com/1fr3dg/TextFormater.git",
"https://github.com/20tab/depthnsdictionary.git",
"https://github.com/3a4oT/DateToolsObjC.git",
"https://github.com/3d4medical/gltfscenekit.git",
"https://github.com/3lvis/Networking.git",
"https://github.com/3qax/swiftygfx.git",
"https://github.com/3qax/swiftyoled.git",
"https://github.com/417-72KI/SwiftUtilities.git",
"https://github.com/a2/passcards-swift-old.git",
"https://github.com/a2/passcards-swift.git",
"https://github.com/a2/shove.git",
"https://github.com/aaastorga/darksky-provider.git",
"https://github.com/AaronBratcher/ALBNoSQLDB.git",
"https://github.com/aasimk2000/file-existence.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/abizern/codejamhelpers.git",
"https://github.com/aciidb0mb3r/argumentparser.git",
"https://github.com/aciidb0mb3r/simplegetclient.git",
"https://github.com/aciidb0mb3r/spawn.git",
"https://github.com/aciidb0mb3r/swiftbasic.git",
"https://github.com/aciidb0mb3r/SwiftMQTT.git",
"https://github.com/aciidb0mb3r/swiftposix.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/adamnemecek/phantomlike.git",
"https://github.com/adamnemecek/webmidikit.git",
"https://github.com/adelang/doomkit.git",
"https://github.com/adhumi/bradel.git",
"https://github.com/Adorkable/Eunomia.git",
"https://github.com/Adorkable/swift-log-format-and-pipe.git",
"https://github.com/adtrevor/myhtml.git",
"https://github.com/aestesis/aether-example.git",
"https://github.com/aestesis/aether.git",
"https://github.com/aestesis/vulkan.git",
"https://github.com/AFathi/ARVideoKit.git",
"https://github.com/agisboye/swiftlmdb.git",
"https://github.com/agnosticdev/networkconnectivity.git",
"https://github.com/aguilarpgc/timelapse.git",
"https://github.com/ahti/SQLele.git",
"https://github.com/ahti/SQLeleCoder.git",
"https://github.com/aidantwoods/swift-paseto.git",
"https://github.com/airbnb/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/akazm/stimpak.git",
"https://github.com/akhilcb/ACBTokenField.git",
"https://github.com/akkyie/swivel.git",
"https://github.com/akosma/SwiftMoment.git",
"https://github.com/akramhussein/hashcash.git",
"https://github.com/aktowns/csdl.git",
"https://github.com/aktowns/cxml2.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/alejandro-isaza/chdf5.git",
"https://github.com/aleksei-z/delivery.git",
"https://github.com/aleph7/HDF5Kit.git",
"https://github.com/aleph7/Upsurge.git",
"https://github.com/alex-alex/s2geometry.git",
"https://github.com/alexandertar/LASwift.git",
"https://github.com/alexaubry/alternate-icons.git",
"https://github.com/alexaubry/HTMLString.git",
"https://github.com/alexaubry/QuerySerialization.git",
"https://github.com/alexaubry/servercrypto.git",
"https://github.com/alexaubry/swift-docker.git",
"https://github.com/alexaubry/uti.git",
"https://github.com/alexdrone/dispatchstore.git",
"https://github.com/alexdrone/Proxy.git",
"https://github.com/alexdrone/Store.git",
"https://github.com/alexito4/equallyspacedstack.git",
"https://github.com/alexito4/sectioner.git",
"https://github.com/alexito4/slox.git",
"https://github.com/alexito4/trap.git",
"https://github.com/alexjohnj/Requests.git",
"https://github.com/alexjohnj/typednotification.git",
"https://github.com/alexruperez/tagging.git",
"https://github.com/algolia/algoliasearch-client-swift.git",
"https://github.com/aliadam/imagewithactivityindicator.git",
"https://github.com/AliSoftware/Dip.git",
"https://github.com/all-user/swiftcombination.git",
"https://github.com/allaboutapps/Fetch.git",
"https://github.com/allegro/swift-junit.git",
"https://github.com/allegro/swiftbox-metrics-statsd.git",
"https://github.com/allegro/swiftbox.git",
"https://github.com/allevato/icu-swift.git",
"https://github.com/alloyapple/goose.git",
"https://github.com/AlTavares/Ciao.git",
"https://github.com/AlTavares/Nappa.git",
"https://github.com/altavares/swiftyshell.git",
"https://github.com/AlwaysRightInstitute/Cows.git",
"https://github.com/AlwaysRightInstitute/Euro.git",
"https://github.com/AlwaysRightInstitute/MicroExpress.git",
"https://github.com/AlwaysRightInstitute/Mustache.git",
"https://github.com/AlwaysRightInstitute/Shell.git",
"https://github.com/AlwaysRightInstitute/SwiftEliza.git",
"https://github.com/AlwaysRightInstitute/SwiftObjCBridge.git",
"https://github.com/AlwaysRightInstitute/SwiftSockets.git",
"https://github.com/AlwaysRightInstitute/SwiftyExpat.git",
"https://github.com/AlwaysRightInstitute/WebPackMiniS.git",
"https://github.com/amadeu01/atlas.git",
"https://github.com/amadeu01/flag.git",
"https://github.com/aman-us-punjabi/firebase-auth-amangarry.git",
"https://github.com/amatino-code/amatino-swift.git",
"https://github.com/amberstar/state.git",
"https://github.com/americanexpress/xcprojectlint.git",
"https://github.com/amine2233/Reactive.git",
"https://github.com/amine2233/Result.git",
"https://github.com/amorican/elasticsearchclient.git",
"https://github.com/amosavian/AMSMB2.git",
"https://github.com/amosavian/ExtendedAttributes.git",
"https://github.com/amosavian/FileProvider.git",
"https://github.com/amosavian/LocaleManager.git",
"https://github.com/amraboelela/swiftleveldb.git",
"https://github.com/amzn/service-model-swift-code-generate.git",
"https://github.com/amzn/smoke-aws-credentials.git",
"https://github.com/amzn/smoke-aws-generate.git",
"https://github.com/amzn/smoke-aws.git",
"https://github.com/amzn/smoke-dynamodb.git",
"https://github.com/amzn/smoke-framework.git",
"https://github.com/amzn/smoke-http.git",
"https://github.com/ancestry/carttool.git",
"https://github.com/andersonlucasg3/Swift.Binary.git",
"https://github.com/andrew-dunn/swiftipaddress.git",
"https://github.com/AndrewBarba/Bluebird.swift.git",
"https://github.com/AndrewBarba/ed25519.git",
"https://github.com/AndrewBarba/lisk-swift.git",
"https://github.com/andy1247008998/kitura-huanxinsdk.git",
"https://github.com/andybest/linenoise-swift.git",
"https://github.com/AndyQ/NFCPassportReader.git",
"https://github.com/angelolloqui/swiftkotlin.git",
"https://github.com/anhdat/pikter.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/ankurp/Dollar.git",
"https://github.com/ankurp/dollarswiftpackagesample.git",
"https://github.com/annecyx/annecy.git",
"https://github.com/annecyx/ip.git",
"https://github.com/anpol/dispatchkit.git",
"https://github.com/anthonycastelli/thunder.git",
"https://github.com/anthonycastelli/vapor-packages.git",
"https://github.com/antimoron/swiftynsdictionary.git",
"https://github.com/antitypical/Result.git",
"https://github.com/antoniocasero/Arrows.git",
"https://github.com/antoniocasero/Panels.git",
"https://github.com/anzfactory/twitterclientcli.git",
"https://github.com/apacheexpress/apacheexpress.git",
"https://github.com/apacheexpress/apacheexpress3.git",
"https://github.com/aphelionapps/swaggerparser.git",
"https://github.com/apleshkov/saber.git",
"https://github.com/apocolipse/tperfecthttpserver.git",
"https://github.com/apocolipse/tzewohttpserver.git",
"https://github.com/apollographql/apollo-ios.git",
"https://github.com/ApolloZhu/srt2bilibilikit.git",
"https://github.com/ApolloZhu/swift_qrcodejs.git",
"https://github.com/app-shack/playgroundtdd.git",
"https://github.com/apparata/clikit.git",
"https://github.com/apparata/markin.git",
"https://github.com/apparata/rulekit.git",
"https://github.com/appcron/acinteractor.git",
"https://github.com/appculture/xcode-project-renamer.git",
"https://github.com/apple/example-package-dealer.git",
"https://github.com/apple/example-package-deckofplayingcards.git",
"https://github.com/apple/example-package-fisheryates.git",
"https://github.com/apple/example-package-playingcard.git",
"https://github.com/apple/swift-corelibs-xctest.git",
"https://github.com/apple/swift-driver.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-nghttp2-support.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-package-manager.git",
"https://github.com/apple/swift-protobuf.git",
"https://github.com/apple/swift-statsd-client.git",
"https://github.com/apple/swift-syntax.git",
"https://github.com/apple/swift-tools-support-core.git",
"https://github.com/apppear/chartview.git",
"https://github.com/appsaurus/cursorpagination.git",
"https://github.com/appsaurus/fluentseeder.git",
"https://github.com/apptekstudios/ASCollectionView.git",
"https://github.com/ariedoelman/domus.git",
"https://github.com/ariedoelman/grovepiio.git",
"https://github.com/armadsen/mypackage.git",
"https://github.com/armadsen/ORSSerialPort.git",
"https://github.com/armcknight/leftpad.swift.git",
"https://github.com/arn00s/caralho.git",
"https://github.com/arn00s/cariocamenu.git",
"https://github.com/arnecs/mqttkit.git",
"https://github.com/artemnovichkov/carting.git",
"https://github.com/artemnovichkov/fastfood.git",
"https://github.com/artemnovichkov/sasha.git",
"https://github.com/artemnovichkov/splash.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/couchbase-cluster-manager.git",
"https://github.com/asensei/Result.git",
"https://github.com/asensei/vapor-auth-jwt.git",
"https://github.com/asensei/vapor-fluent-mongo.git",
"https://github.com/ashfurrow/danger-swiftlint.git",
"https://github.com/ashleymills/Reachability.swift.git",
"https://github.com/askrav/yelpprovider.git",
"https://github.com/asoderman/JSONDecoder.git",
"https://github.com/asura19/yyswift.git",
"https://github.com/AsyncNinja/AsyncNinja.git",
"https://github.com/atdrendel/differences.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/attilathefun/swaggerparser.git",
"https://github.com/autobahnswift/shuttle.git",
"https://github.com/autojiang/photopick.git",
"https://github.com/automatic/manual.git",
"https://github.com/automatontec/jsonconfig.git",
"https://github.com/autozimu/nanomsg.swift.git",
"https://github.com/autozimu/stringmetric.swift.git",
"https://github.com/awesome-labs/swift-perfect-todo-example.git",
"https://github.com/axziplinlib/richimages.git",
"https://github.com/axziplinlib/tabnavigations.git",
"https://github.com/aydenp/passencoder.git",
"https://github.com/azawawi/swift-libzmq.git",
"https://github.com/azawawi/swift-zmq.git",
"https://github.com/azoy/sodium.git",
"https://github.com/Azoy/Sword.git",
"https://github.com/Azoy/SwordRPC.git",
"https://github.com/Azure/Azure.iOS.git",
"https://github.com/b20160/vapor-0.4.1.git",
"https://github.com/baberthal/ringbuffer.git",
"https://github.com/backnotgod/localizationcommand.git",
"https://github.com/bakemecookies/blu.pub.git",
"https://github.com/balance-io/secp256k1_swift.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/Balancingrock/vjson.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/bannzai/eracalculator.git",
"https://github.com/bannzai/kuri.git",
"https://github.com/bannzai/ocha.git",
"https://github.com/bannzai/ragnarok.git",
"https://github.com/bannzai/spmdemo.git",
"https://github.com/bannzai/swdifft.git",
"https://github.com/bannzai/teapot.git",
"https://github.com/bannzai/xcodeproject.git",
"https://github.com/barrault01/firebasehelpers.git",
"https://github.com/bart-kneepkens/spellingcopbot.git",
"https://github.com/bartlebys/spmcoresample.git",
"https://github.com/basvankuijck/perfectoauth2.git",
"https://github.com/batoulapps/adhan-swift.git",
"https://github.com/bazaarvoice/BVSwift.git",
"https://github.com/bearjaw/RBSRealmBrowser.git",
"https://github.com/bearyinnovative/funcbot.git",
"https://github.com/beatsbears/incrementer.git",
"https://github.com/beatsbears/ipaddress_v4.git",
"https://github.com/behrang/swiftparsec.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/BenchR267/swiftalfred.git",
"https://github.com/bengottlieb/marcel.git",
"https://github.com/bengottlieb/plug.git",
"https://github.com/benjaminmayo/sass-swift.git",
"https://github.com/benloong/tidyjson.git",
"https://github.com/bennykjohnson/geojsonkit.git",
"https://github.com/bennykjohnson/opencloudkit.git",
"https://github.com/benspratling4/applereceiptvalidation.git",
"https://github.com/benspratling4/swiftawss3.git",
"https://github.com/benspratling4/swiftawssignaturev4.git",
"https://github.com/benspratling4/swiftfoundationcompression.git",
"https://github.com/benspratling4/swiftpostmark.git",
"https://github.com/bergusman/evotor.git",
"https://github.com/bermudadigitalstudio/cerberus.git",
"https://github.com/bermudadigitalstudio/redshot.git",
"https://github.com/bermudadigitalstudio/rope.git",
"https://github.com/bermudadigitalstudio/titan.git",
"https://github.com/bermudadigitalstudio/titancore.git",
"https://github.com/bermudadigitalstudio/titancors.git",
"https://github.com/bermudadigitalstudio/titanerrorhandling.git",
"https://github.com/bermudadigitalstudio/titanformurlencodedbodyparser.git",
"https://github.com/bermudadigitalstudio/titanjsonrequestbody.git",
"https://github.com/bermudadigitalstudio/titanloggingswiftybeaver.git",
"https://github.com/bermudadigitalstudio/titanquerystring.git",
"https://github.com/bermudadigitalstudio/titanrouter.git",
"https://github.com/Bersaelor/KDTree.git",
"https://github.com/bersaelor/swiftybeagle.git",
"https://github.com/Bersaelor/SwiftyHYGDB.git",
"https://github.com/besarism/SSSSOnboarding.git",
"https://github.com/bgerstle/scout.git",
"https://github.com/bhansconnect/swifttimeit.git",
"https://github.com/bhargavg/spmtry.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/bielikb/textattributes.git",
"https://github.com/bignerdranch/Deferred.git",
"https://github.com/bikemap/lingohubcli.git",
"https://github.com/Bilue/ContentFittingWebView.git",
"https://github.com/binarybirds/git.git",
"https://github.com/binarybirds/sunlight.git",
"https://github.com/binarybirds/testify.git",
"https://github.com/binarybirds/timezones.git",
"https://github.com/biscuitehh/clibbsd.git",
"https://github.com/bitmark-inc/tweetnacl-swiftwrap.git",
"https://github.com/bitwit/slurp.git",
"https://github.com/bitwit/swift-package-directory.git",
"https://github.com/bizz84/acceptancemark.git",
"https://github.com/bizz84/SwiftyStoreKit.git",
"https://github.com/bjtj/swift-upnp-tools.git",
"https://github.com/bkase/doctorpretty.git",
"https://github.com/bkostjens/perfect-turnstile-mongokittendb.git",
"https://github.com/blinker13/terminal.git",
"https://github.com/blitzagency/events.git",
"https://github.com/bloombox/Swift.git",
"https://github.com/bmbowdish/swiftfall.git",
"https://github.com/bmdelacruz/filesystemwatcher.git",
"https://github.com/Boilertalk/BigInt.swift.git",
"https://github.com/Boilertalk/Keystore.swift.git",
"https://github.com/Boilertalk/secp256k1.swift.git",
"https://github.com/Boilertalk/telegrambot.swift.git",
"https://github.com/Boilertalk/vaporfacebookbot.git",
"https://github.com/Boilertalk/vaportelegrambot.git",
"https://github.com/Boilertalk/Web3.swift.git",
"https://github.com/boostcode/tori-apns.git",
"https://github.com/bootoption/bootoption.git",
"https://github.com/bouke/bignum.git",
"https://github.com/bouke/cdns_sd.git",
"https://github.com/bouke/clibsodium.git",
"https://github.com/bouke/dns.git",
"https://github.com/bouke/glob.git",
"https://github.com/bouke/hap.git",
"https://github.com/bouke/hkdf.git",
"https://github.com/bouke/ini.git",
"https://github.com/bouke/lark.git",
"https://github.com/bouke/my-home.git",
"https://github.com/bouke/netservice.git",
"https://github.com/bouke/srp.git",
"https://github.com/bourvill/OpenWeatherKit.git",
"https://github.com/bow-swift/bow.git",
"https://github.com/bppr/speck.git",
"https://github.com/bradlarson/cfreeglut.git",
"https://github.com/bradlarson/copengl.git",
"https://github.com/bradlarson/cvideo4linux.git",
"https://github.com/bradlarson/gpuimage2.git",
"https://github.com/brainfinance/stackdriverlogging.git",
"https://github.com/brentdax/sqlkit.git",
"https://github.com/brentschooley/twilioaccesstoken.git",
"https://github.com/brettrtoomey/brett-xml.git",
"https://github.com/brettrtoomey/jobs.git",
"https://github.com/brettrtoomey/swift-onesignal.git",
"https://github.com/brian-schick/postal-legacy.git",
"https://github.com/brian-schick/result.git",
"https://github.com/brian-schick/stainlesssteed.git",
"https://github.com/bricklife/boostblekit.git",
"https://github.com/bricklife/JSONRPCKit.git",
"https://github.com/Brightify/ReactantUI.git",
"https://github.com/broadwaylamb/gottagofast.git",
"https://github.com/broadwaylamb/OpenCombine.git",
"https://github.com/brokenhandsio/awswift.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/brutella/log-swift.git",
"https://github.com/brutella/xcollectiondata.git",
"https://github.com/bryannorden/elo-rating-swift.git",
"https://github.com/brycesteve/perfect-view2pdf.git",
"https://github.com/bubski/jsonencoderlinux.git",
"https://github.com/buratti/vaporpaypal.git",
"https://github.com/bustoutsolutions/siesta.git",
"https://github.com/buzzfeed/MockDuck.git",
"https://github.com/bwetherfield/pitchspeller.git",
"https://github.com/bygri/vapor-browser-method-middleware-provider.git",
"https://github.com/bygri/vapor-gnu-terry-pratchett.git",
"https://github.com/byterix/bxinputcontroller.git",
"https://github.com/byterix/bxtextfield.git",
"https://github.com/cafielo/MNISTKit.git",
"https://github.com/calebkleveter/argon2.git",
"https://github.com/calebkleveter/uiwebkit.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/captainyukinoshitahachiman/perfectslackapiclient.git",
"https://github.com/cardoso/fluent-extended.git",
"https://github.com/carekit-apple/carekit.git",
"https://github.com/carson-katri/attributedstringbuilder.git",
"https://github.com/carson-katri/swift-request.git",
"https://github.com/carthage/carthage.git",
"https://github.com/Carthage/Commandant.git",
"https://github.com/cats-oss/cujira.git",
"https://github.com/cats-oss/Degu.git",
"https://github.com/cats-oss/ExtensionProperty.git",
"https://github.com/cats-oss/grpc-swift-client.git",
"https://github.com/cats-oss/Sica.git",
"https://github.com/cats-oss/xcbt.git",
"https://github.com/cbguder/CBGPromise.git",
"https://github.com/cellular/cellular-swift.git",
"https://github.com/cfdrake/swiftxdg.git",
"https://github.com/cfilipov/texttable.git",
"https://github.com/cgarciae/ndarray.git",
"https://github.com/cgarciae/stream.git",
"https://github.com/chameleonbot/bot.git",
"https://github.com/chameleonbot/chameleon.git",
"https://github.com/Chandlerdea/HTTPKit.git",
"https://github.com/chandlerdea/tableviewcellformatter.git",
"https://github.com/chaoscoder/pairingcrypto.git",
"https://github.com/che1404/vipergen.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/chicletemkt/serverside.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/choefele/alexaskillskit.git",
"https://github.com/choefele/shpdump.git",
"https://github.com/ChouTi-Lab/ChouTi.git",
"https://github.com/chris-al-brown/alchemy-random.git",
"https://github.com/chris-hatton/swiftimage.git",
"https://github.com/chrisaljoudi/swift-log-oslog.git",
"https://github.com/chrisamanse/QRSwift.git",
"https://github.com/chrisbkarani/Sukari.git",
"https://github.com/chriseidhof/ccmark.git",
"https://github.com/chriseidhof/commonmark-swift.git",
"https://github.com/chrs1885/Capable.git",
"https://github.com/chylis/swiftilities.git",
"https://github.com/cityos/corecityos.git",
"https://github.com/ckanchan/CDKOraccInterface.git",
"https://github.com/ckanchan/CDKSwiftOracc.git",
"https://github.com/cloudant/swift-cloudant.git",
"https://github.com/cloutiertyler/base58string.git",
"https://github.com/cmtrounce/SwURL.git",
"https://github.com/code28/vapor-gorush.git",
"https://github.com/codeeagle/combineex.git",
"https://github.com/codeeagle/rocketboot.git",
"https://github.com/codewinsdotcom/PostgresClientKit.git",
"https://github.com/codezerker/clibleveldb.git",
"https://github.com/codezerker/leveldb.git",
"https://github.com/codezerker/rycooder.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/cojoj/coderunnercli.git",
"https://github.com/collinhundley/jwt.git",
"https://github.com/collinhundley/oauth1.git",
"https://github.com/CombineHarvesters/AVFoundationCombine.git",
"https://github.com/CombineHarvesters/CombineTesting.git",
"https://github.com/CombineHarvesters/FoundationCombine.git",
"https://github.com/CombineHarvesters/HealthKitCombine.git",
"https://github.com/combineopensource/combinedatasources.git",
"https://github.com/combineopensource/combineprintout.git",
"https://github.com/commercetools/commercetools-ios-sdk.git",
"https://github.com/composed-swift/composed.git",
"https://github.com/composed-swift/composedui.git",
"https://github.com/contentful/contentful-persistence.swift.git",
"https://github.com/contentful/contentful.swift.git",
"https://github.com/coodly/talktocloud.git",
"https://github.com/coopercorona/voronoi.git",
"https://github.com/corekit/vipera.git",
"https://github.com/coryalder/ape.git",
"https://github.com/coryalder/slow.git",
"https://github.com/coryalder/swiftleftpad.git",
"https://github.com/Cosmo/HackMan.git",
"https://github.com/cosmo/iso8859.git",
"https://github.com/Cosmo/Nodes",
"https://github.com/couriere/uiextensions.git",
"https://github.com/cpageler93/chickgen.git",
"https://github.com/cpageler93/consulswift.git",
"https://github.com/cpageler93/jiraswift.git",
"https://github.com/cpageler93/quack.git",
"https://github.com/cpageler93/raml-swift.git",
"https://github.com/cpageler93/swiftyhawk.git",
"https://github.com/cqxfly/qxtcpserver_vapor.git",
"https://github.com/creekpld/romanize.git",
"https://github.com/crelies/advancedlist.git",
"https://github.com/crelies/ListPagination.git",
"https://github.com/crelies/remoteimage.git",
"https://github.com/cremo-music/notus.git",
"https://github.com/cristik/Suture.git",
"https://github.com/crmitchelmore/swift-rlp.git",
"https://github.com/crossroadlabs/express.git",
"https://github.com/crossroadlabs/Regex.git",
"https://github.com/crossroadlabs/swirl.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/cryptokitten/aes.git",
"https://github.com/cryptokitten/bcrypt.git",
"https://github.com/cryptokitten/cryptoessentials.git",
"https://github.com/cryptokitten/cryptokitten.git",
"https://github.com/cryptokitten/md5.git",
"https://github.com/cryptokitten/scram.git",
"https://github.com/cryptokitten/sha2.git",
"https://github.com/csantanapr/swift-watson-sdk.git",
"https://github.com/csjones/gg.git",
"https://github.com/cszatma/DiscreteMathematics.git",
"https://github.com/cszatma/SwiftySweetness.git",
"https://github.com/cuba/mongoorm.git",
"https://github.com/CUITCHE/UserCaches.git",
"https://github.com/cxa/MenuItemKit.git",
"https://github.com/cxa/Piz.git",
"https://github.com/cxa/XPaver.git",
"https://github.com/cyberbeni/typednotificationcenter.git",
"https://github.com/czechboy0-deprecated/secretsocks.git",
"https://github.com/d-a-n/swift-language-detector.git",
"https://github.com/d-abe/kitura-extension.git",
"https://github.com/dabfleming/perfect-requestlogger.git",
"https://github.com/daltonclaybrook/apispec.git",
"https://github.com/daltoniam/Starscream.git",
"https://github.com/daltyboy11/swiftygames.git",
"https://github.com/damicreabox/coconut.git",
"https://github.com/danappelxx/earlyreturn.swift.git",
"https://github.com/danappelxx/environment.git",
"https://github.com/danappelxx/muttonchop.git",
"https://github.com/danger/danger-swift.git",
"https://github.com/danger/swift.git",
"https://github.com/dangnguyenhuu/jsqmessagesswift.git",
"https://github.com/daniel-grumberg/codablexpc.git",
"https://github.com/daniel1of1/CSwiftV.git",
"https://github.com/danielgindi/Charts.git",
"https://github.com/danielr/Mokka.git",
"https://github.com/dankogai/swift-bignum.git",
"https://github.com/dankogai/swift-combinatorics.git",
"https://github.com/dankogai/swift-complex.git",
"https://github.com/dankogai/swift-int2x.git",
"https://github.com/dankogai/swift-interval.git",
"https://github.com/dankogai/swift-json.git",
"https://github.com/dankogai/swift-sion.git",
"https://github.com/dankogai/swift-tap.git",
"https://github.com/danneu/hansel.git",
"https://github.com/danramteke/swiftviper.git",
"https://github.com/dantoml/assetgen.git",
"https://github.com/dantoml/jay-c7.git",
"https://github.com/dantoml/jay-extras.git",
"https://github.com/dantoml/jay.git",
"https://github.com/dantoml/resource.git",
"https://github.com/dantoml/swift-package-converter.git",
"https://github.com/danwaltin/swiftspec.git",
"https://github.com/darjeelingsteve/hopoate.git",
"https://github.com/DarkySwift/KangarooStore.git",
"https://github.com/darthpelo/swiftgpiolibrary.git",
"https://github.com/DarthStrom/Moxie.git",
"https://github.com/dastrobu/argtree.git",
"https://github.com/dastrobu/vincenty.git",
"https://github.com/davbeck/MultipartForm.git",
"https://github.com/davbeck/PersistentCacheKit.git",
"https://github.com/davdroman/badonde.git",
"https://github.com/davdroman/rehatch.git",
"https://github.com/davecom/SwiftCSP.git",
"https://github.com/davecom/SwiftGraph.git",
"https://github.com/davecom/SwiftPriorityQueue.git",
"https://github.com/davedelong/DDMathParser.git",
"https://github.com/davedufresne/SwiftParsec.git",
"https://github.com/DaveWoodCom/XCGLogger.git",
"https://github.com/davidahouse/xcresultkit.git",
"https://github.com/davidask/operation.git",
"https://github.com/davidlivadaru/DLAngle.git",
"https://github.com/davidlivadaru/DLCoreGraphics.git",
"https://github.com/davidlivadaru/DLInterval.git",
"https://github.com/davidlivadaru/DLSuggestionsTextField.git",
"https://github.com/davidrpiper/timely.git",
"https://github.com/davidskrundz/commandline.git",
"https://github.com/davidskrundz/hash.git",
"https://github.com/davidskrundz/lua.git",
"https://github.com/davidskrundz/math.git",
"https://github.com/davidskrundz/regex.git",
"https://github.com/davidstump/SwiftPhoenixClient.git",
"https://github.com/davidungar/minipromisekit.git",
"https://github.com/dchakarov/TrainInformationService.git",
"https://github.com/dcutting/syft.git",
"https://github.com/ddddxxx/Semver.git",
"https://github.com/dduan/BitArray.git",
"https://github.com/dduan/comprehension.git",
"https://github.com/dduan/herp.git",
"https://github.com/dduan/Pathos.git",
"https://github.com/dduan/terminalpaint.git",
"https://github.com/dduan/tre.git",
"https://github.com/Dean151/ImageUtility.git",
"https://github.com/Dean151/RecordingOverlay.git",
"https://github.com/declarativehub/bond.git",
"https://github.com/DeclarativeHub/ReactiveKit.git",
"https://github.com/decryptos/levenshtein.git",
"https://github.com/defrenz/bonbon.git",
"https://github.com/dehesa/CodableCSV.git",
"https://github.com/dehesa/Conbini.git",
"https://github.com/deltalus/mcgl.git",
"https://github.com/DenTelezhkin/Ariadne.git",
"https://github.com/DenTelezhkin/DTCollectionViewManager.git",
"https://github.com/DenTelezhkin/DTModelStorage.git",
"https://github.com/DenTelezhkin/DTTableViewManager.git",
"https://github.com/designatednerd/plister.git",
"https://github.com/dev1an/a-star.git",
"https://github.com/dev1an/imessagebot.git",
"https://github.com/dev1an/inputevents.git",
"https://github.com/dev1an/swift-atem.git",
"https://github.com/devandsev/JustSignals.git",
"https://github.com/devandsev/TapticKit.git",
"https://github.com/devandsev/YoutubeDirectLinkExtractor.git",
"https://github.com/devedbox/commander.git",
"https://github.com/devedbox/git-commit.git",
"https://github.com/developerinsider/spmdeveloperinsider.git",
"https://github.com/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/dexter9313/petrinetlib.git",
"https://github.com/dfed/XCTest-watchOS.git",
"https://github.com/dfunckt/swift-futures.git",
"https://github.com/dhardiman/config.git",
"https://github.com/dhardiman/fetch.git",
"https://github.com/dhardiman/router.git",
"https://github.com/dhardiman/spot.git",
"https://github.com/diejmon/fetchedresultspublisher.git",
"https://github.com/diejmon/smosquitto.git",
"https://github.com/Digipolitan/alamofire-logging.git",
"https://github.com/Digipolitan/dependency-injector-object-mapper.git",
"https://github.com/Digipolitan/dependency-injector.git",
"https://github.com/Digipolitan/framework-swift-template.git",
"https://github.com/Digipolitan/idylle-client-swift.git",
"https://github.com/Digipolitan/localization-toolkit-object-mapper.git",
"https://github.com/Digipolitan/localization-toolkit.git",
"https://github.com/Digipolitan/runtime-environment.git",
"https://github.com/Digipolitan/session-kit.git",
"https://github.com/dimakura/sspec.git",
"https://github.com/dimillian/swiftuiflux.git",
"https://github.com/dimpiax/commandlinerouter.git",
"https://github.com/dimpiax/StyleDecorator.git",
"https://github.com/DingSoung/Extension.git",
"https://github.com/dingsoung/network.git",
"https://github.com/dingwilson/MultiPeer.git",
"https://github.com/dingwilson/XMLParsing.git",
"https://github.com/DirectToSwift/CoreDataToSwiftUI.git",
"https://github.com/DirectToSwift/DirectToSwiftUI.git",
"https://github.com/DirectToSwift/SwiftUIRules.git",
"https://github.com/DiUS/pact-consumer-swift.git",
"https://github.com/dlvm-team/coretensor.git",
"https://github.com/dlvm-team/dlvm-core.git",
"https://github.com/dmcyk/easyapns.git",
"https://github.com/dmcyk/swiftonigurama.git",
"https://github.com/dmcyk/swiftycurl.git",
"https://github.com/dmiotti/jargon.git",
"https://github.com/dmonagle/elasticsearch-foundation-swift.git",
"https://github.com/dmonagle/elasticsearch-swift.git",
"https://github.com/dmonagle/elasticsearch-vapor.git",
"https://github.com/dmulholl/janus-swift.git",
"https://github.com/dmytro-anokhin/core-data-model-description.git",
"https://github.com/dmytro-anokhin/url-image.git",
"https://github.com/dmytroseredinov/xcode.git",
"https://github.com/dn-m/music.git",
"https://github.com/dn-m/notationmodel.git",
"https://github.com/dn-m/notationview.git",
"https://github.com/dn-m/performancetesting.git",
"https://github.com/dn-m/structure.git",
"https://github.com/docopt/docopt.swift.git",
"https://github.com/dokun1/openwhisk-swift-sdk.git",
"https://github.com/dokun1/slackin-swift.git",
"https://github.com/dokun1/vaux.git",
"https://github.com/domcorvasce/decamelize.git",
"https://github.com/dominicegginton/spinner.git",
"https://github.com/donald-pinckney/swift-crypto-routines.git",
"https://github.com/donald-pinckney/swiftlearn.git",
"https://github.com/donald-pinckney/swiftnum.git",
"https://github.com/donaldlwu/drwapns.git",
"https://github.com/dorperobin/stringvalidator.git",
"https://github.com/dostu/swiftmetric.git",
"https://github.com/dougzilla32/CancelForPromiseKit.git",
"https://github.com/dparnell/swift-parser-generator.git",
"https://github.com/dral3x/stringslint.git",
"https://github.com/drewag/Decree.git",
"https://github.com/drewag/DecreeServices",
"https://github.com/drewag/swiftlier.git",
"https://github.com/drewag/SwiftlierCLI",
"https://github.com/drewag/SwiftlierUIKit",
"https://github.com/dreymonde/alba.git",
"https://github.com/dreymonde/AppFolder.git",
"https://github.com/dreymonde/Delegated.git",
"https://github.com/dreymonde/light.git",
"https://github.com/dreymonde/Shallows.git",
"https://github.com/dreymonde/sofarkit.git",
"https://github.com/dreymonde/Time.git",
"https://github.com/drichardson/SwiftyBase64.git",
"https://github.com/drmohundro/SWXMLHash.git",
"https://github.com/dtaylor1701/xcsnippets.git",
"https://github.com/duemunk/async.git",
"https://github.com/DuetHealth/Bedrock.git",
"https://github.com/DuetHealth/DrX.git",
"https://github.com/dunkelstern/base64.git",
"https://github.com/dunkelstern/quotedprintable.git",
"https://github.com/dunkelstern/swiftyregex.git",
"https://github.com/dunkelstern/twohundred.git",
"https://github.com/dunkelstern/unchained.git",
"https://github.com/dunkelstern/unchainedfile.git",
"https://github.com/dunkelstern/unchainedipaddress.git",
"https://github.com/dunkelstern/unchainedstring.git",
"https://github.com/dvor/alfred-kaomoji.git",
"https://github.com/dylan/colors.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/e-sixt/swack.git",
"https://github.com/eBardX/XestiMonitors.git",
"https://github.com/ecerney/frameworktest.git",
"https://github.com/edwellbrook/Themeable.git",
"https://github.com/eecollante10/sourceeditor.git",
"https://github.com/eelcokoelewijn/audiokit.git",
"https://github.com/efekanegeli/EEStackLayout.git",
"https://github.com/efimster/es6-promise.git",
"https://github.com/egeniq/BetterSheet.git",
"https://github.com/egeniq/InjectPropertyWrapper.git",
"https://github.com/einstore/einstorecore.git",
"https://github.com/einstore/githubkit.git",
"https://github.com/einstore/nioerrorkit.git",
"https://github.com/einstore/shellkit.git",
"https://github.com/einstore/systemator.git",
"https://github.com/einstore/templator.git",
"https://github.com/einstore/vaporerrorkit.git",
"https://github.com/elegantchaos/Actions.git",
"https://github.com/elegantchaos/ActionsKit.git",
"https://github.com/elegantchaos/Arguments.git",
"https://github.com/elegantchaos/Builder.git",
"https://github.com/elegantchaos/BuilderConfiguration.git",
"https://github.com/elegantchaos/CommandShell.git",
"https://github.com/elegantchaos/Coverage.git",
"https://github.com/elegantchaos/Datastore.git",
"https://github.com/elegantchaos/DictionaryCoding.git",
"https://github.com/elegantchaos/docopt.swift.git",
"https://github.com/elegantchaos/Expressions.git",
"https://github.com/elegantchaos/JSBlock.git",
"https://github.com/elegantchaos/JSONDump.git",
"https://github.com/elegantchaos/Localization.git",
"https://github.com/elegantchaos/Logger.git",
"https://github.com/elegantchaos/Runner.git",
"https://github.com/elegantchaos/SketchX.git",
"https://github.com/elegantchaos/TokenView.git",
"https://github.com/elegantchaos/Xpkg.git",
"https://github.com/elegantchaos/XpkgPackage.git",
"https://github.com/elliottminns/blackfire.git",
"https://github.com/elliottminns/blackfish-example.git",
"https://github.com/elliottminns/blackfish-stencil.git",
"https://github.com/elliottminns/echo.git",
"https://github.com/elliottminns/genetics.git",
"https://github.com/elliottminns/narwhal.git",
"https://github.com/elliottminns/orca-mongodb.git",
"https://github.com/elliottminns/orca-sqlite.git",
"https://github.com/elliottminns/orca.git",
"https://github.com/ellneal/swift-promise",
"https://github.com/elvishjerricco/nifty.git",
"https://github.com/emaloney/applesystemlogswiftpackage.git",
"https://github.com/emaloney/cleanroomappsettings.git",
"https://github.com/emaloney/cleanroomcli.git",
"https://github.com/emaloney/cleanroomconcurrency.git",
"https://github.com/emaloney/cleanroomdatatransactions.git",
"https://github.com/emaloney/cleanroomdatetime.git",
"https://github.com/emaloney/cleanroomlogger.git",
"https://github.com/eman6576/SGCircuitBreaker.git",
"https://github.com/eman6576/SGSwiftyBind.git",
"https://github.com/emckee4/intensityattributingkit.git",
"https://github.com/emilletfr/domo-server-vapor-docker.git",
"https://github.com/emorydunn/launchagent.git",
"https://github.com/endeavourblack/geneticalgorithm.git",
"https://github.com/endocrimes/assetgen.git",
"https://github.com/endocrimes/jay-c7.git",
"https://github.com/endocrimes/jay-extras.git",
"https://github.com/endocrimes/jay.git",
"https://github.com/endocrimes/resource.git",
"https://github.com/eneko/axx.git",
"https://github.com/eneko/CommandRegistry.git",
"https://github.com/eneko/github.git",
"https://github.com/eneko/MarkdownGenerator.git",
"https://github.com/eneko/random.git",
"https://github.com/eneko/regex.git",
"https://github.com/eneko/sourcedocs.git",
"https://github.com/eneko/System.git",
"https://github.com/enums/calatrava.git",
"https://github.com/enums/pjango-jianshuplugin.git",
"https://github.com/enums/pjango.git",
"https://github.com/envoy/Ambassador.git",
"https://github.com/envoy/Embassy.git",
"https://github.com/eonil/flow.swift.git",
"https://github.com/eonil/fsevents-unofficial-wrapper.git",
"https://github.com/ephread/instructions.git",
"https://github.com/erbittuu/rest.git",
"https://github.com/erica/swiftcollections.git",
"https://github.com/erica/swiftcolors.git",
"https://github.com/erica/swiftdates.git",
"https://github.com/erica/swiftfoundationadditions.git",
"https://github.com/erica/swiftgeometry.git",
"https://github.com/erica/swiftstring.git",
"https://github.com/erica/swiftutility.git",
"https://github.com/ericdke/withorwithoutemoji.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/es-kumagai/kitura-router.git",
"https://github.com/es-kumagai/kitura-sys.git",
"https://github.com/esttorhe/xclint.git",
"https://github.com/eswick/streamkit.git",
"https://github.com/ethanhuang13/NSAttributedStringBuilder.git",
"https://github.com/ether-cli/ether.git",
"https://github.com/EtneteraMobile/ETBinding.git",
"https://github.com/evan-liu/commandarguments.git",
"https://github.com/evan-liu/commands.git",
"https://github.com/evertt/reflection-extensions.git",
"https://github.com/evgenyneu/keychain-swift.git",
"https://github.com/evgenyneu/SigmaSwiftStatistics.git",
"https://github.com/evilgix/Evil.git",
"https://github.com/evolution-app/zeromqswift.git",
"https://github.com/exceptionalprogramming/xp-swift.git",
"https://github.com/exyte/macaw.git",
"https://github.com/ezura/spell-checker-for-swift.git",
"https://github.com/f-meloni/danger-swift-coverage.git",
"https://github.com/f-meloni/danger-swift-prose.git",
"https://github.com/f-meloni/danger-swift-xcodesummary.git",
"https://github.com/f-meloni/rocket.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/fabriziobrancati/swiftybot.git",
"https://github.com/facebook/facebook-ios-sdk.git",
"https://github.com/fanpyi/UICollectionViewLeftAlignedLayout-Swift.git",
"https://github.com/fassko/MeteoLVProvider.git",
"https://github.com/fassko/TartuWeatherProvider.git",
"https://github.com/favret/poutoupush.git",
"https://github.com/fborges/environmentalism.git",
"https://github.com/fcanas/hlscore.git",
"https://github.com/featherweightlabs/featherweightrouter.git",
"https://github.com/fernandodelrio/swiftcolorgenlibrary.git",
"https://github.com/ferranabello/Viperit.git",
"https://github.com/ffittschen/dnsupdater.git",
"https://github.com/ffried/fffoundation.git",
"https://github.com/fidetro/perfect-ffdb.git",
"https://github.com/fireblade-engine/ecs-demo.git",
"https://github.com/fireblade-engine/ecs.git",
"https://github.com/FitnessKit/AntMessageProtocol.git",
"https://github.com/fitnesskit/asyncnetwork.git",
"https://github.com/FitnessKit/BluetoothMessageProtocol.git",
"https://github.com/FitnessKit/DataDecoder.git",
"https://github.com/FitnessKit/FitDataProtocol.git",
"https://github.com/FitnessKit/FitnessUnits.git",
"https://github.com/FitnessKit/TcxDataProtocol.git",
"https://github.com/Fitzafful/BillboardSwiftLibrary.git",
"https://github.com/fjcaetano/RxWebSocket.git",
"https://github.com/flight-school/anycodable.git",
"https://github.com/flight-school/currencyconverter.git",
"https://github.com/flight-school/floatingpointapproximation.git",
"https://github.com/flight-school/jsonfeed.git",
"https://github.com/flight-school/messagepack.git",
"https://github.com/flight-school/money.git",
"https://github.com/flight-school/rate.git",
"https://github.com/flight-school/regularexpressiondecoder.git",
"https://github.com/flight-school/swiftantlr4.git",
"https://github.com/flightaware/swift-tcl-extension-demo.git",
"https://github.com/flightaware/swift-tcl.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/flintbox/ansiescapecode.git",
"https://github.com/flintbox/bouncer.git",
"https://github.com/flintbox/flint.git",
"https://github.com/flintbox/motor.git",
"https://github.com/flintbox/work.git",
"https://github.com/flipside5/sos.git",
"https://github.com/florianreinhart/geodesy.git",
"https://github.com/flowkey/uikit-cross-platform.git",
"https://github.com/flowtoolz/SwiftObserver.git",
"https://github.com/flowtoolz/SwiftyToolz.git",
"https://github.com/FluuxIO/XMPP.git",
"https://github.com/flx/lsm303.git",
"https://github.com/foffer/PwnedPasswords.git",
"https://github.com/FormatterKit/DayPeriodFormatter.git",
"https://github.com/formbound/futures.git",
"https://github.com/foulkesjohn/betswift.git",
"https://github.com/foulkesjohn/csvencoder.git",
"https://github.com/franklefebvre/xmlcoder.git",
"https://github.com/frazer-rbsn/swiftargs.git",
"https://github.com/freak4pc/CombineCocoa.git",
"https://github.com/freshos/router.git",
"https://github.com/freshOS/then.git",
"https://github.com/frizlab/bsonserialization.git",
"https://github.com/frizlab/simplestream.git",
"https://github.com/frizlab/ubjsonserialization.git",
"https://github.com/frizlab/xpath.git",
"https://github.com/frogcjn/imageioplus.git",
"https://github.com/fromkk/colorset.git",
"https://github.com/fromkk/hashkit.git",
"https://github.com/fromkk/lunch.git",
"https://github.com/fromkk/simulators.git",
"https://github.com/fromkk/testsummaries.git",
"https://github.com/Frugghi/SwiftLCS.git",
"https://github.com/fschwehn/vapor-rest-client.git",
"https://github.com/ftiff/ftapp.git",
"https://github.com/fulldecent/swift4-module-template.git",
"https://github.com/fuzza/librarian.git",
"https://github.com/fxm90/LightweightObservable.git",
"https://github.com/Fyrts/Multipart.git",
"https://github.com/g-off/stringray.git",
"https://github.com/g-off/xcodeproject.git",
"https://github.com/gabrielnica/pythonbridge.git",
"https://github.com/gabrielnica/swiftheroprotocol.git",
"https://github.com/galtsoft/kitura-manager.git",
"https://github.com/gamesmash/typeswift.git",
"https://github.com/garriguv/SQLiteMigrationManager.swift.git",
"https://github.com/gavrilaf/seagull.git",
"https://github.com/gavrilaf/sgrouter.git",
"https://github.com/gcharita/CodableProperty.git",
"https://github.com/gcharita/XMLMapper.git",
"https://github.com/gejingguo/swift-net.git",
"https://github.com/generallyhelpfulsoftware/scalar2d.git",
"https://github.com/genius/future.git",
"https://github.com/georgealegre/uncmorfiserver.git",
"https://github.com/GEOSwift/GEOSwift.git",
"https://github.com/geothings/lakestonecore.git",
"https://github.com/geothings/lakestonexml.git",
"https://github.com/getGuaka/Args.git",
"https://github.com/getGuaka/Colorizer.git",
"https://github.com/getGuaka/Env.git",