-
Notifications
You must be signed in to change notification settings - Fork 87
/
luarocks-module-names.txt
1512 lines (1512 loc) · 16.5 KB
/
luarocks-module-names.txt
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
--------------------------
---------------------------
30log
abelhas
abstk
activelua-learningtool
adal-lua
adoc_cmd_ext
aesfileencrypt
alien
alnbox
alt-getopt
amalg
amqp
annotate
ansi
ansicolors
ao
apicast
apicast-cli
apidemo
arc4random
argmatcher
argon2
argon2-ffi
argparse
argv
array
asklua
astar
async
audiodataload
auth0-nginx
authy-lua
autoblock
awesome-autostart
babel
base
base58
base64mix
basexx
basic-auth
basics
battery_status
bbcode
bcrypt
bcrypt-ffi
bencode
ber
bigint
bin
Binary and pure-Lua rocks:
binaryheap
binser
biolua
bit32
bitlib
bitness
bitop-lua
bitvec
bkopenssl
bk-tree
blowfish
brain
brieflz
bump
bump-3dpd
busted
busted-ffi
busted-stable
butter
c3
cache-protocols
cassandra
cassowary
cctea
cdb
centrilua
cgilua
chacha
chance
chars
checks
chess-fen
chroma
chrome-devtools-client
chronos
cipher-log
cirru-parser
cl
claims-handler
classic
classy
cloud_storage
cluacov
cmark
cmath
cmdbuild
codec
collections
colorise
colormap
colors
colyseus
commandlineui
compat52
compat53
concurrentlua
config
connman_dbus
connman_widget
copas
copas-async
copas-ev
copastimer
corenlp
coronalog
coronastd
coronest
corowatch
cosmo
cosy-client
cosy-instance
coxpcall
cpml-ci
cprint
cqueues
cqueues-pgsql
crayon
crc32
crescent
csv
csv2tensor
ctc
cue
cuid
cwnu-drcom
cwtest
cyrussasl
dado
danetool
darksidesync
datadumper
datafile
dataframe
date
dbus_proxy
debugger
debug.lua
dedlit
deimos
delaunay
densearrays
depgraph
deque
deviant
dialplan
diff
digitalfilter
discount
dkjson
dns
doccotest
docker
docopt
docroc
domotest
dromozoa-amalgamate
dromozoa-calendar
dromozoa-chunk
dromozoa-commons
dromozoa-curl
dromozoa-dom
dromozoa-dyld
dromozoa-future
dromozoa-graph
dromozoa-http
dromozoa-image
dromozoa-jpeg
dromozoa-json
dromozoa-lambda
dromozoa-parser
dromozoa-png
dromozoa-prl
dromozoa-regexp
dromozoa-shlex
dromozoa-socks
dromozoa-sqlite3
dromozoa-tree
dromozoa-ubench
dromozoa-unix
dromozoa-utf8
dromozoa-xml
dromozoa-zmq
dub
dump
ecasound
eccles
effil
elasticsearch
elfs
emdcriterion
emma
endel-struct
enet
enum
env
environ
erento-lua-rfc-4122-uuid-generator
escher
espeon
etcd
etlua
eventemitter
external-oauth
external-oauth2
external-oauth3
external-oid
fakeredis
faketorio
families
fat_error
fbclient
fcgi
feedparser
ffiex
fhirformats
fifo
fi-luajit
finally
firebase
flatfile
flirt
flos
fltk4lua
flu
f.lua
fluidsynth
flvk
fly-bgcrypto-pbkdf2
fly-bgcrypto-sha
fmtstr
formatter
fp
fr
freetype
fsm
f-strings
ftcsv
fun
fun-alloyed
functorflow
fusionscript
gamecake
gbk
gcfn
genny
geo
getopt
getsize
gimlet-cocktail
gimlet-render
gin
github
glfw
globals-lua
gluu-oauth2-client-auth
gluu-oauth2-rs
glyphify
gntp
gnucrypt
gobo-awesome
gobo-awesome-alttab
gobo-awesome-battery
gobo-awesome-gobonet
gobo-awesome-light
gobo-awesome-sound
gomaxmagick
gonapps-cookie
gonapps-jwt
gonapps-url-decoder
gonapps-url-encoder
gonapps-url-query-parser
gonapps-url-router
graphql
graphviz
guard
gumbo
gversion
gwa-kong-endpoint
gxid-bearer
gxs-auth
h5tk
halo
haricot
harpseal
hash
hashids
hc
hdf5
hdrhistogram
header-transfer
heaps
heka_mock
helloluarocks
helloworld
heroku-openresty
hex
hfun
hglib
hook_nt_create_file
host
hotswap
hotswap-ev
hotswap-hash
hotswap-http
hotswap-lfs
hprose
hsluv
hsm_statechart
htk
html-entities
htmlparser
http
httpclient
http-digest
hump
hungarian
huntable
husl
hylaa-im-auth
i18n
idna
ihelp
indexedpng
inifile
inilazy
injarg
inotify
inspect
iovec
irc-engine
ircmess
iris
is
isa
itertools
iwi
jeejah
jmespath
json2lua
json4lua
json-logic-lua
json-lua
jsonnet
jsonrpc4lua
jumper
jwt
jwt-jitsi
keyauthvaluepass
klesi
kong
kong-aliyun-http-filter
kong-cassandra
kong-consumer-rate-limiting
kong-file-log-exclusion
kong-https-redirect
kong-http-to-https-redirect
kong-ip-location
kong-jwt-claim-headers
kong-lapis
kong-lib-logger
kong-oidc
kong-oidc-auth
kong-oidc-auth-akshay
kong-path-based-routing
kong-payload-size-limiting
kong-plugin-aws-kinesis
kong-plugin-aws-lambda-status-code
kong-plugin-azure-functions
kong-plugin-cookies-to-headers
kong-plugin-datadog-tags
kong-plugin-debug
kong-plugin-deviceuid
kong-plugin-escher
kong-plugin-extend-headers
kong-plugin-geoip
kong-plugin-gwa-ip-anonymity
kong-plugin-hal
kong-plugin-hello-world
kong-plugin-json-threat-protection
kong-plugin-jwt-claims-validate
kong-plugin-jwt-crafter
kong-plugin-jwt-up
kong-plugin-key-auth-referer
kong-plugin-key-secret
kong-plugin-mithril
kong-plugin-moesif
kong-plugin-moocherio
kong-plugin-newrelic-insights
kong-plugin-oidc-acl
kong-plugin-openwhisk
kong-plugin-param-transformer
kong-plugin-perimeterx
kong-plugin-pipeline
kong-plugin-prometheus
kong-plugin-proxycache
kong-plugin-queryparams-to-headers
kong-plugin-rbac
kong-plugin-referer
kong-plugin-resource-transformer
kong-plugin-response-transformer-tobase64
kong-plugin-rewrite
kong-plugin-shepherd
kong-plugin-stdout-log
kong-plugin-token-agent
kong-plugin-universal-jwt
kong-plugin-upstream-auth-basic
kong-plugin-upstream-basic-auth
kong-plugin-wsse
kong-plugin-xml-threat-protection
kong-plugin-zipkin
kong-prometheus-plugin
kong-segment-log
kong-spec-expose
kong-splunk-log
kong-uma-rs
kong-upstream-jwt
kpgmoon
krpc
lake
lalarm
landlord
lanes
lapis
lapis-annotate
lapis-cache
lapis-console
lapis-crud
lapis-exceptions
lascii85
latclient
layeredata
lazybag
lbase64
lbc
lbci
lbuffer
lcf
lcomplex
lcrypt
lcurses
ldbus_api
ldecnumber
ldoc
lecho
leda
ledge
leg
lgdbm
lgi
lglob
lgsl
libcidr-ffi
libdeflate
libqrpng
libsodium
libssh
libssh2
libtls
lice-lua
lift
lightningmdb
liluat
linenoise
linenoise-windows
linkedlist
lint64
linterval
liquid
litcord
literal
lj2procfs
ljdns
ljlinenoise
ljndpi
ljsonschema
ljsyscall
llsocket
llui
lluv
lluv-curl
lluv-ftp
lluv-poll-zmq
lluv-rs232
lluv-ssl
lmapm
lmathx
lmd5
lnotify
loadchunk
loadconf
loader
loadkit
lobject
lodash
log4l
loggedkv
loldb
long
loop
loopcomp
loowy
lor
lovebird
loveconsole
love-imgui
love-ora
love-release
loverocks
lovetoys
lpack
lpath
lpc
lpdf
lpeg
lpeglabel
lpeg_patterns
lposix
lpty
lq
lqd
lrandom
lrdb
lrexlib-gnu
lrexlib-oniguruma
lrexlib-pcre
lrexlib-pcre2
lrexlib-posix
lrexlib-tre
lrt
lsha2
lsm
lsocket
lspec
lsqlite3
lsqlite3complete
ltcltk
ltdiff
ltermbox
ltype
lua
lua2json
lua5.1.js-file-packer
lua-acme
lua-api-gateway-aws
lua-api-gateway-cachemanager
lua-api-gateway-hmac
lua-aplicado
lua-apr
lua-avro
lua-basex
luabc
lua-bcrypt
luabenchmark
luabibtex
luabins
luabitop
lua-brotli
lua_bufflib
lua-busmt-if
lua-capnproto
lua-cassandra
lua-cbor
luacc
lua-chan
lua-channels
luacheck
lua-cjson
lua-cjson2
lua-cjson-ol
luaclasses
lua_cliargs
lua-cmsgpack
luacoap
lua-coat
lua-coatpersistent-lsqlite3
lua-coatpersistent-luasql
lua-codegen
luacom
lua-conciseserialization
luacov
luacov-cobertura
luacov-console
luacov-coveralls
luacov-multiple
luacrc16
lua-crypt
luacrypto
luacrypto-baikal
luacryptor
luacs
lua-csnappy
luacsound
luacurl
lua-curl
luacv
luacwrap
luadaemon
luadate
luadbg
luadbi
luadbi-mysql
luadbi-postgresql
luadbi-sqlite3
lua-de
luadeepcl
lua-discount
luadist2
luadns
luadoc
luadocumentor
lua-docx
lua-dynamic-cors
lua-easy-crypto
luaec25519
luaejdb
luaepnf
lua-epoll
lua-erento-hmac
lua-erento-uuid
lua-espeak
lua-ev
luaevent
luaex
luaexif
luaexpat
luafam
luafan
luafanlite
luafanmicro
lua-fann
luafcgi
lua-ffi-zlib
luafft
lua-filesize
luafilesystem
luafilesystem-ffi
luaflow
luafp
luafudge
luagcrypt
luagearman
lua-geoip
luagl
lua-glob-pattern
lua-gnuplot
luagq
luagraph
luagraphs
luahaml
luahelp
lua-hiredis
luahtml
lua-http-parser
luahue
luai
lua-iconv
luaidl
lua-imlib2
lua-inih
luainlua
lua_ip
luaipc
lua-irc
luaircclient
luaish-windows
luaiter
lua-jconv
lua-jet
luajit-gumbo
luajson
lua_json
lua-jwc
lua-jwk2pem
luajwt
luajwtjitsi
lualand
lualdap
lua_ldap
lua-leveldb
lualgorithms
lua-libmodbus
lualibrarytemplate
lua-libzip
lualines
lualink
lualinq
lualit
lua-livr
lua-livr-extra
lua-llthreads
lua-llthreads2
lua-llthreads2-compat
lua-log
lua-logger
lualogging
lualol
lua-lru
lua-lsw
lua-lswcli
lualsx
lua-lz4
lualzo
lua-m6502
luamacro
lua-markdown-extra
lua-mastodon
lua-mcrypt
lua-messagepack
luamidi
luamine
lua-minittp
lua-mnemonic
lua-mongo
lua-mosquitto
luamqttc
lua-mtrace
lua-mud
lua-multipart-parser
lua-myallocator
luanet
lua-netudpif
lua-nginx-logging
luanosql-unqlite
luanotify
lua-nucleo
luaobject
luaoop
lua-opencage-geocoder
luaossl
lua_pack
luapak
lua-parser
lua-path
lua-payssion
luapdu
lua-periphery
luapgsql
luapod
luaposix
luapress
luaproc
luaprofiler
luaprompt
lua-protobuf
luaproxy
luapsql
luaqub
lua-quickcheck
luarabbit
lua-recaptcha
lua_redis
luarepl
lua-reql
lua-requests
lua-resty-aries
lua-resty-auto-ssl
lua-resty-auto-ssl-de
lua-resty-auto-ssl-instrumented
lua-resty-auto-ssl-multiname
lua-resty-aws-auth
lua-resty-aws-email
lua-resty-aws-sdk
lua-resty-beanstalkd
lua-resty-busted
lua-resty-consul
lua-resty-cookie
lua-resty-cors
lua-resty-couchdb
lua-resty-dns-client
lua-resty-dogstatsd
lua-resty-duo-mobile
lua-resty-env
lua-resty-exec
lua-resty-execvp
lua-resty-fileinfo
lua-resty-fluentd
lua-resty-fluent-logger
lua-resty-github
lua-resty-healthcheck
lua-resty-healthcheck-snz1
lua-resty-hipchat
lua-resty-hmac
lua-resty-hoedown
lua-resty-http
lua-resty-influx
lua-resty-injection
lua-resty-iputils
lua-resty-jit-uuid
lua-resty-jsonrpc-batch
lua-resty-jwt
lua-resty-keycloak
lua-resty-libcjson
lua-resty-lock
lua-resty-macaroons
lua-resty-mail
lua-resty-mediador
lua-resty-memcached
lua-resty-mlcache
lua-resty-mpd
lua-resty-murmurhash2
lua-resty-murmurhash3
lua-resty-mysql
lua-resty-nettle
lua-resty-ntlm
lua-resty-openidc
lua-resty-passwdqc
lua-resty-paypal
lua-resty-postgres
lua-resty-prettycjson
lua-resty-qless
lua-resty-r3
lua-resty-readurl
luarestyredis
lua-resty-redis
lua-resty-redis-connector
lua-resty-repl
lua-resty-reqargs
lua-resty-s3
lua-resty-scrypt
lua-resty-session
lua-resty-shcache
lua-resty-snappy
lua-resty-socket
lua-resty-sse
lua-resty-statsd
lua-resty-string
lua-resty-tags
lua-resty-tasker
lua-resty-template
lua-resty-timer
lua-resty-tsort
lua-resty-txid
lua-resty-upload
lua-resty-upstream
lua-resty-upstream-worker
lua-resty-urandom
lua-resty-url
lua-resty-uuid
lua-resty-validation
lua-resty-waf
lua-resty-woothee
lua-resty-worker-events
lua-resty-xxhash
luark
luarocks
luarocks-build-cpp
luarocks-fetch-gitrec
luarocks_helloworld
lua-rote
lua-rover
luars232
lua-salt
lua-schema-validation
luascope
lua-sdl2
luasec
luasec-fixed
luaselenium
lua-shepi
lua_signal
lua-silva
lua-smtps
luasoap
luasocket
luasocket-lanes
luasocket-unix
luasofia
luasolidstate
lua-spore
luasql-mysql
luasql-oci8
luasql-postgres
luasql-sqlite3
luasrcdiet
luassert
lua-ssllabs
luastatic
luastatsd
lua-step
luastepper
luastrava
luastream
lua-string-test
lua-struct
luasvn
lua_sysenv
luasyslog
luasystem
lua_system_constants
luatabledump
lua-telegram-api
lua-term
lua-testlongstring
lua-testmore
luatexts
lua-tinycdb
lua-toml
lua-ttyrant
luatweetnacl
lua-twilio
luatwit
luatz
lua-ucl
luaunbound
luaunit
luaunix
luautf8
lua-utils
lua_uuid
lua-value-browser
lua-vcard
luavel
luavenster
lua-vips
luawalker
luawebsocket
lua-websockets
luawinapi
lua-wolfram
luawt
luaxml
lua-xmlreader
luaxmlrpc
luaxpath
luaxpl
lua-yajl
luayaml
lua-yaml
luazen
luazip
lua-zlib
lua-zmq
lua-zmq-threads
lub
lubs
luchia
ludent
lugate
lulpeg
luma
luna
lunadoc
lunajson
lunamark
lunary
lunary-core
lunary-optim
lunatest
lundler
lunit
lunitx
lunix
luno
luq
luse
lust
lustache
lustache-lambdas
lusty
lusty-config
lusty-error-status
lusty-form
lusty-html
lusty-json
lusty-log
lusty-log-console
lusty-mustache
lusty-nginx
lusty-request-file
lusty-request-pattern
lusty-rewrite-param
lusty-statsd
lusty-store
lusty-store-mongo
lusty-store-mysql
lusty-template
lut
lutrace
luuid
luv
luv-updated
lxsh
lyaml
lzlib
lzmq
lzmq-auth
lzmq-ffi
lzmq-pool