forked from nim-lang/packages
-
Notifications
You must be signed in to change notification settings - Fork 1
/
packages.json
33942 lines (33942 loc) · 799 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
[
{
"name": "niqlite",
"url": "https://github.com/mentalonigiri/niqlite",
"method": "git",
"tags": [
"library",
"sqlite",
"fts5"
],
"description": "sqlite wrapper with fts5 and cflags configuration for sqlite.c. Builds sqlite from source",
"license": "MIT",
"web": "https://github.com/mentalonigiri/niqlite"
},
{
"name": "nimgo",
"url": "https://github.com/Alogani/NimGo",
"method": "git",
"tags": [
"library",
"coroutines",
"async",
"mincoro",
"asyncfile",
"asyncsocket",
"asyncstreams",
"asyncproc",
"eventloop"
],
"description": "Asynchronous Library Inspired by Go's goroutines, for Nim",
"license": "MIT",
"web": "https://github.com/Alogani/NimGo"
},
{
"name": "shellcmd",
"url": "https://github.com/Alogani/shellcmd",
"method": "git",
"tags": [
"library",
"childprocess",
"async",
"script",
"bash",
"terminal",
"system administration"
],
"description": "Collection of Terminal commands to be used inside nim",
"license": "MIT",
"web": "https://github.com/Alogani/shellcmd"
},
{
"name": "asyncproc",
"url": "https://github.com/Alogani/asyncproc",
"method": "git",
"tags": [
"library",
"childprocess",
"async"
],
"description": "Flexible child process spawner with strong async features",
"license": "MIT",
"web": "https://github.com/Alogani/asyncproc"
},
{
"name": "aloganimisc",
"url": "https://github.com/Alogani/aloganimisc",
"method": "git",
"tags": [
"library",
"dependency"
],
"description": "Dependency for asyncproc and shellcmd package. Small utilities not worthing a package. Not meant to be used in production",
"license": "MIT",
"web": "https://github.com/Alogani/aloganimisc"
},
{
"name": "asyncio",
"url": "https://github.com/Alogani/asyncio",
"method": "git",
"tags": [
"library",
"async",
"asyncfile",
"asyncpipe",
"asyncstreams"
],
"description": "Async files and streams tools",
"license": "MIT",
"web": "https://github.com/Alogani/asyncio"
},
{
"name": "asyncsync",
"url": "https://github.com/Alogani/asyncsync",
"method": "git",
"tags": [
"library",
"async",
"primitives"
],
"description": "Async primitives working on std/asyncdispatch",
"license": "MIT",
"web": "https://github.com/Alogani/asyncsync"
},
{
"name": "csvdict",
"url": "https://github.com/Alogani/csvdict",
"method": "git",
"tags": [
"csv",
"library",
"data"
],
"description": "Another CsvTable API. Goals are efficient, simple and flexible",
"license": "MIT",
"web": "https://github.com/Alogani/csvdict"
},
{
"name": "well_parser",
"url": "https://codeberg.org/samsamros/RRC-permits",
"method": "git",
"tags": [
"Texas Railroad Commission",
"Drilling Permits",
"Injection wells"
],
"description": "This project is intended to parse Texas Railroad Commission data provided in an unsuitable and non-transparent format. As of 2024, this code is able to parse Drilling Permit Master and Trailer and Underground Injection Control Data",
"license": "GPL-3.0",
"web": "https://codeberg.org/samsamros/RRC-permits"
},
{
"name": "avrman",
"url": "https://github.com/Abathargh/avrman",
"method": "git",
"tags": [
"avr",
"atmega",
"microcontroller",
"embedded",
"firmware",
"nim",
"nimble",
"cmake",
"make",
"makefile"
],
"description": "A tool for managing nim and c projects targetting AVR microcontrollers.",
"license": "BSD-3",
"web": "https://github.com/Abathargh/avrman"
},
{
"name": "nimcso",
"url": "https://github.com/amkrajewski/nimcso",
"method": "git",
"tags": [
"data",
"optimization",
"metaprogramming",
"databases",
"data selection",
"ai",
"ml",
"science"
],
"description": "nim Composition Space Optimization: A high-performance tool leveraging metaprogramming to implement several methods for selecting components (data dimensions) in compositional datasets, as to optimize the data availability and density for applications such as machine learning.",
"license": "MIT",
"web": "https://github.com/amkrajewski/nimcso",
"doc": "https://nimcso.phaseslab.org"
},
{
"name": "vqsort",
"url": "https://github.com/Asc2011/vqsort",
"method": "git",
"tags": [
"data",
"optimization",
"sorting",
"simd",
"quicksort"
],
"description": "A vectorized Quicksort (AVX2-only)",
"license": "MIT"
},
{
"name": "nimplex",
"url": "https://github.com/amkrajewski/nimplex",
"method": "git",
"tags": [
"data",
"simplex",
"math",
"ai",
"ml",
"materials",
"science"
],
"description": "NIM simPLEX: A concise scientific Nim library (with CLI and Python binding) providing samplings, uniform grids, and traversal graphs in compositional (simplex) spaces.",
"license": "MIT",
"web": "https://github.com/amkrajewski/nimplex",
"doc": "https://nimplex.phaseslab.org"
},
{
"name": "tagforge",
"url": "https://github.com/Nimberite-Development/TagForge-Nim",
"method": "git",
"tags": [
"minecraft",
"format",
"parse",
"dump",
"data",
"nbt",
"mc"
],
"description": "A library made for the serialisation and deserialisation of MC NBT!",
"license": "Apache-2.0",
"web": "https://github.com/Nimberite-Development/TagForge-Nim",
"doc": "https://nimberite-development.github.io/TagForge-Nim/"
},
{
"name": "curlies",
"url": "https://github.com/svenrdz/curlies",
"method": "git",
"tags": [
"object construction",
"field init shorthand",
"update syntax",
"rust update syntax",
"fungus"
],
"description": "A macro for object construction using {} (curlies).",
"license": "MIT",
"web": "https://github.com/svenrdz/curlies"
},
{
"name": "littlefs",
"url": "https://github.com/Graveflo/nim-littlefs.git",
"method": "git",
"tags": [
"littlefs",
"embeded",
"filesystem",
"fuse"
],
"description": "API and bindings for littlefs. Includes a fuse implementation.",
"license": "BSD-3-Clause-1",
"web": "https://github.com/Graveflo/nim-littlefs"
},
{
"name": "mutf8",
"url": "https://github.com/The-Ticking-Clockwork/MUTF-8",
"method": "git",
"tags": [
"encoding",
"decoding",
"encode",
"decode",
"chartset",
"mutf8",
"mutf-8",
"utf8",
"utf-8",
"unicode"
],
"description": "An implementation of a Modified UTF-8 encoder and decoder in Nim!",
"license": "Apache-2.0",
"web": "https://github.com/The-Ticking-Clockwork/MUTF-8",
"doc": "https://the-ticking-clockwork.github.io/MUTF-8/"
},
{
"name": "dekao",
"url": "https://github.com/ajusa/dekao",
"method": "git",
"tags": [
"html",
"template",
"htmx"
],
"description": "Write HTML templates easily",
"license": "MIT",
"web": "https://github.com/ajusa/dekao"
},
{
"name": "rssatom",
"url": "https://codeberg.org/samsamros/rssatom",
"method": "git",
"tags": [
"rss",
"atom",
"rss parser",
"rss creator",
"RFC 4287"
],
"description": "rssatom is a package designed to read and create RSS and Atom feeds",
"license": "MIT",
"web": "https://codeberg.org/samsamros/rssatom"
},
{
"name": "sudoku",
"url": "https://github.com/roberto170/sudoku",
"method": "git",
"tags": [
"sudoku"
],
"description": "sudoku generator in nim.",
"license": "MIT",
"web": "https://github.com/roberto170/sudoku"
},
{
"name": "avr_io",
"url": "https://github.com/Abathargh/avr_io",
"method": "git",
"tags": [
"avr",
"atmega",
"microcontroller",
"embedded",
"firmware"
],
"description": "AVR registers, interrupts, progmem and peripheral support in nim!",
"license": "BSD-3",
"web": "https://github.com/Abathargh/avr_io/wiki"
},
{
"name": "modernnet",
"url": "https://github.com/Nimberite-Development/ModernNet",
"method": "git",
"tags": [
"minecraft",
"protocol",
"mc"
],
"description": "ModernNet is a barebones library to interact with the Minecraft Java Edition protocol!",
"license": "Apache-2.0",
"web": "https://github.com/Nimberite-Development/ModernNet",
"doc": "https://nimberite-development.github.io/ModernNet/"
},
{
"name": "worldtree",
"url": "https://github.com/keithaustin/worldtree",
"method": "git",
"tags": [
"entity-component-system",
"ecs",
"dod"
],
"description": "A small, lightweight ECS framework for Nim.",
"license": "MIT"
},
{
"name": "nulid",
"url": "https://github.com/The-Ticking-Clockwork/NULID",
"method": "git",
"tags": [
"library",
"id",
"ulid",
"uuid",
"guid"
],
"description": "A ULID implementation in Nim!",
"license": "CC0",
"web": "https://github.com/The-Ticking-Clockwork/NULID",
"doc": "https://the-ticking-clockwork.github.io/NULID/"
},
{
"name": "crockfordb32",
"url": "https://github.com/The-Ticking-Clockwork/Crockford-Base32-Nim",
"method": "git",
"tags": [
"base",
"base32",
"crockford",
"encode",
"decode"
],
"description": "A simple implementation of Crockford Base32.",
"license": "CC0",
"web": "https://github.com/The-Ticking-Clockwork/Crockford-Base32-Nim",
"doc": "https://the-ticking-clockwork.github.io/Crockford-Base32-Nim/"
},
{
"name": "rtmidi",
"url": "https://github.com/stoneface86/nim-rtmidi/",
"method": "git",
"tags": [
"midi",
"cross-platform",
"windows",
"linux",
"macosx",
"audio",
"wrapper",
"library"
],
"description": "Nim bindings for RtMidi, a cross-platform realtime MIDI input/output library.",
"license": "MIT",
"web": "https://github.com/stoneface86/nim-rtmidi/",
"docs": "https://stoneface86.github.io/nim-rtmidi/docs/"
},
{
"name": "luigi",
"url": "https://github.com/neroist/luigi",
"method": "git",
"tags": [
"ui",
"gui",
"library",
"wrapper",
"luigi",
"X11",
"linux",
"windows",
"essence",
"essenceOS",
"cross-platform"
],
"description": "Nim bindings for the barebones single-header GUI library for Win32, X11, and Essence: Luigi.",
"license": "MIT",
"web": "https://github.com/neroist/luigi"
},
{
"name": "sun_moon",
"url": "https://github.com/dschaadt/sun_moon",
"method": "git",
"tags": [
"astro",
"sun",
"moon",
"position",
"sunrise",
"sunset",
"moonrise",
"moonset"
],
"description": "Astro functions for calcuation of sun and moon position, rise and set time as well as civil, nautical and astronomical dawn and dusk as a function of latitude and longitude.",
"license": "MIT",
"web": "https://github.com/dschaadt/sun_moon"
},
{
"name": "nimip",
"url": "https://github.com/hitblast/nimip",
"method": "git",
"tags": [
"nimip",
"api-wrapper",
"ip-api",
"ip-address-lookup",
"library",
"hybrid"
],
"description": "Asynchronously lookup IP addresses with this tiny, hybrid Nim application.",
"license": "MIT",
"web": "https://github.com/hitblast/nimip"
},
{
"name": "gitman",
"url": "https://github.com/nirokay/gitman",
"method": "git",
"tags": [
"git",
"manager",
"repository-manager"
],
"description": "Cross-platform git repository manager.",
"license": "GPL-3.0-only",
"web": "https://github.com/nirokay/gitman"
},
{
"name": "lorem",
"url": "https://github.com/neroist/lorem",
"method": "git",
"tags": [
"lorem-ipsum",
"lorem",
"ipsum",
"text-generator",
"text-generation",
"random"
],
"description": "Nim library that generates \"Lorem ipsum\" text.",
"license": "MIT",
"web": "https://github.com/neroist/lorem",
"doc": "https://neroist.github.io/lorem/lorem.html"
},
{
"name": "nimipdf",
"url": "https://github.com/neroist/nimipdf",
"method": "git",
"tags": [
"nimib",
"pdf",
"wkhtmltopdf",
"nimibex"
],
"description": "Nim library that adds a PDF backend for nimib",
"license": "MIT",
"web": "https://neroist.github.io/nimipdf/index.pdf"
},
{
"name": "nimwkhtmltox",
"url": "https://github.com/neroist/nim-wkhtmltox",
"method": "git",
"tags": [
"wkhtmltopdf",
"wkhtmltoimage",
"wkhtmltox",
"pdf",
"image",
"html",
"htmltopdf",
"htmltoimage",
"bindings",
"wrapper"
],
"description": "Nim bindings for wkhtmltox",
"license": "LGPL-3.0-or-later",
"web": "https://github.com/neroist/nim-wkhtmltox"
},
{
"name": "youtubescraper",
"url": "https://github.com/TaxMachine/youtubescraper",
"method": "git",
"tags": [
"youtube",
"scraper",
"api",
"wrapper",
"library"
],
"description": "Very fast and lightweight YouTube scraper for Nim.",
"license": "WTFPL",
"web": "https://github.com/TaxMachine/youtubescraper"
},
{
"name": "mcsrvstat.nim",
"url": "https://github.com/hitblast/mcsrvstat.nim",
"method": "git",
"tags": [
"mcsrvstat",
"api-wrapper",
"minecraft",
"minecraft-server-status",
"library"
],
"description": "A hybrid and asynchronous Nim wrapper for the Minecraft Server Status API.",
"license": "MIT",
"web": "https://github.com/hitblast/mcsrvstat.nim"
},
{
"name": "nimitheme",
"url": "https://github.com/neroist/nimitheme",
"method": "git",
"tags": [
"nimib",
"theme",
"addon",
"style",
"library",
"html",
"nimib-extension"
],
"description": "make nimib look beautiful with nimitheme",
"license": "MIT",
"web": "https://neroist.github.io/nimitheme/index.html"
},
{
"name": "nimpretty_t",
"url": "https://github.com/tobealive/nimpretty_t",
"method": "git",
"tags": [
"nimpretty",
"code",
"formatter",
"formatting",
"autoformat",
"cli",
"terminal",
"command-line",
"utility"
],
"description": "Use nimpretty with tab indentation.",
"license": "MIT",
"web": "https://github.com/tobealive/nimpretty_t"
},
{
"name": "webui",
"url": "https://github.com/webui-dev/nim-webui",
"method": "git",
"tags": [
"webui",
"web",
"gui",
"ui",
"wrapper",
"bindings",
"cross-platform",
"browser",
"chrome",
"firefox",
"safari",
"webapp",
"library"
],
"description": "Nim wrapper for WebUI",
"license": "MIT",
"web": "https://webui.me/",
"docs": "https://webui.me/docs"
},
{
"name": "unibs",
"url": "https://github.com/choltreppe/unibs",
"method": "git",
"tags": [
"serialization",
"serialize",
"deserialize",
"marshal",
"unmarshal",
"binary serialization"
],
"description": "binary de-/serialization that works on js, c and VM (compiletime)",
"license": "MIT"
},
{
"name": "polyrpc",
"url": "https://github.com/choltreppe/polyrpc",
"method": "git",
"tags": [
"rpc",
"remote procedure call"
],
"description": "A system for generating remote-procedure-calls for any pair of server and client",
"license": "MIT"
},
{
"name": "arrayutils",
"url": "https://github.com/choltreppe/arrayutils",
"method": "git",
"tags": [
"array"
],
"description": "map/mapIt for arrays",
"license": "MIT"
},
{
"name": "objaccess",
"url": "https://github.com/choltreppe/objaccess",
"method": "git",
"tags": [
"getter",
"setter",
"setable",
"getable",
"object"
],
"description": "generate setters and getters for object types",
"license": "MIT"
},
{
"name": "unroll",
"url": "https://github.com/choltreppe/unroll",
"method": "git",
"tags": [
"unroll",
"compiletime",
"map"
],
"description": "unroll for-loops (and map into seq/array) at compile-time in nim",
"license": "MIT"
},
{
"name": "geolocation",
"url": "https://github.com/HazeCS/geolocation",
"method": "git",
"tags": [
"geolocation",
"geoip",
"geo",
"location"
],
"description": "Retreive geolocation details from an IP",
"license": "MIT"
},
{
"name": "uing",
"url": "https://github.com/neroist/uing",
"method": "git",
"tags": [
"ui",
"gui",
"library",
"wrapper",
"libui",
"libui-ng",
"linux",
"windows",
"macosx",
"cross-platform"
],
"description": "Bindings for the libui-ng C library. Fork of ui.",
"license": "MIT",
"doc": "https://neroist.github.io/uing",
"web": "https://github.com/neroist/uing"
},
{
"name": "testdiff",
"url": "https://github.com/geotre/testdiff",
"method": "git",
"tags": [
"tests",
"testing",
"diff",
"difference"
],
"description": "Simple utility for diffing values in tests.",
"license": "MIT"
},
{
"name": "parlexgen",
"url": "https://github.com/choltreppe/parlexgen",
"method": "git",
"tags": [
"lexer",
"parser",
"lexer-generator",
"parser-generator",
"lex",
"parse"
],
"description": "A Parser/Lexer Generator.",
"license": "MIT"
},
{
"name": "nimcorpora",
"url": "https://github.com/neroist/nimcorpora",
"method": "git",
"tags": [
"corpora"
],
"description": "A Nim interface for Darius Kazemi's Corpora Project",
"license": "0BSD",
"web": "https://github.com/neroist/nimcorpora",
"doc": "https://neroist.github.io/nimcorpora/nimcorpora.html"
},
{
"name": "htest",
"url": "https://github.com/Yandall/HTest/",
"method": "git",
"tags": [
"html",
"test",
"unittest",
"nimquery"
],
"description": "Simple library to make tests on html string using css query selectors",
"license": "MIT",
"web": "https://github.com/Yandall/HTest/"
},
{
"name": "passy",
"url": "https://github.com/infinitybeond1/passy",
"method": "git",
"tags": [
"password",
"generator",
"cryptography",
"security"
],
"description": "A fast little password generator",
"license": "GPL3",
"web": "https://github.com/infinitybeond1/passy"
},
{
"name": "entgrep",
"url": "https://github.com/srozb/entgrep",
"method": "git",
"tags": [
"command-line",
"crypto",
"cryptography",
"security"
],
"description": "A grep but for secrets (based on entropy).",
"license": "MIT",
"web": "https://github.com/srozb/entgrep"
},
{
"name": "nexus",
"url": "https://github.com/jfilby/nexus",
"method": "git",
"tags": [
"web",
"framework",
"orm"
],
"description": "Nexus provides a high-level web framework for Nim, with batteries included.",
"license": "Apache-2.0",
"web": "https://github.com/jfilby/nexus"
},
{
"name": "rpgsheet",
"url": "https://git.skylarhill.me/skylar/rpgsheet",
"method": "git",
"tags": [
"tui",
"ttrpg",
"dnd",
"rpg"
],
"description": "System-agnostic CLI/TUI for tabletop roleplaying game character sheets",
"license": "GPLv3",
"web": "https://git.skylarhill.me/skylar/rpgsheet"
},
{
"name": "openurl",
"url": "https://github.com/foxoman/openurl",
"method": "git",
"tags": [
"open",
"url",
"uri"
],
"description": "Open Any Url/File in the default App / WebBrowser.",
"license": "MIT",
"web": "https://github.com/foxoman/openurl",
"doc": "https://nimopenurl.surge.sh/openurl.html"
},
{
"name": "tinydialogs",
"url": "https://github.com/Patitotective/tinydialogs",
"method": "git",
"tags": [
"dialogs",
"file-dialogs"
],
"description": "Tiny file dialogs Nim bindings.",
"license": "MIT",
"web": "https://github.com/Patitotective/tinydialogs"
},
{
"name": "artemis",
"url": "https://git.skylarhill.me/skylar/artemis",
"method": "git",
"tags": [
"gemini",
"server",
"async"
],
"author": "Skylar Hill",
"description": "A simple Nim server for the Gemini protocol. Forked from geminim",
"license": "GPLv3"
},
{
"name": "periapsisEngine",
"url": "https://github.com/Periapsis-Studios/Periapsis-Engine",
"method": "git",
"tags": [
"game",
"engine",
"2D",
"abandoned"
],
"author": "Knedlik",
"description": "A 2D game engine made by Periapsis Studios",
"license": "MIT",
"doc": "https://periapsis-studios.github.io/Periapsis-Engine/theindex.html"
},
{
"name": "niprefs",
"url": "https://github.com/Patitotective/niprefs",
"method": "git",
"tags": [
"preferences",
"prefs"
],
"description": " A dynamic preferences-system with a table-like structure for Nim.",
"license": "MIT",
"web": "https://github.com/Patitotective/niprefs",
"doc": "https://github.com/Patitotective/NiPrefs"
},
{
"name": "lrparser",
"url": "https://github.com/vanyle/lrparser/",
"method": "git",
"tags": [
"parser",
"slr",
"grammar",
"lexer",
"tokenizer"
],
"description": "A SLR parser written in Nim with compile-time and run-time grammar generation.",
"license": "MIT",
"doc": "https://vanyle.github.io/lrparser/lrparser.html",
"web": "https://github.com/vanyle/lrparser/"
},
{
"name": "py2nim",
"url": "https://github.com/Niminem/Py2Nim",
"method": "git",
"tags": [
"transpiler",
"python"
],
"description": "Py2Nim is a tool to translate Python code to Nim. The output is human-readable Nim code, meant to be tweaked by hand after the translation process.",
"license": "MIT"
},
{
"name": "rangequeries",
"url": "https://github.com/vanyle/RangeQueriesNim",
"method": "git",
"tags": [
"range",
"query",
"segment tree",
"tree"
],
"description": "An implementation of Range Queries in Nim",
"license": "MIT",
"web": "https://github.com/vanyle/RangeQueriesNim/",
"doc": "https://vanyle.github.io/RangeQueriesNim/rangequeries.html"
},
{
"name": "riff",
"url": "https://github.com/johnnovak/nim-riff",
"method": "git",
"tags": [
"riff",
"iff",
"interchange file format",
"library",
"endianness",
"io"
],
"description": "RIFF file handling for Nim ",
"license": "WTFPL",
"web": "https://github.com/johnnovak/nim-riff"
},
{
"name": "nim0",
"url": "https://gitlab.com/pmetras/nim0.git",
"method": "git",
"tags": [
"compiler",
"language",
"RISC",
"instruction set",
"assembler",
"toy",
"compilation",
"Oberon-0",
"Wirth",
"Compiler Construction",
"book"
],
"description": "Nim0 is a toy one-pass compiler for a limited subset of the Nim language, targetting a 32-bit RISC CPU. Compiled Nim0 programs can be executed in the RISC emulator. All this in 5 heavily-documented sources, totalling less than 4k LOC. It is a port of Niklaus Wirth's Oberon-0 compiler as described in his book Compiler construction (included in the package), cross-referenced in the sources, that you can follow while reading the book.",
"license": "MIT",
"web": "https://pmetras.gitlab.io/nim0/",
"doc": "https://gitlab.com/pmetras/nim0"
},
{
"name": "libsaedea",
"url": "https://github.com/m33m33/libsaedea",
"method": "git",
"tags": [
"libsaedea",
"library",
"encryption",
"decryption",
"symetric",
"crypto",
"cryptography",
"security"
],
"description": "Library implementing a variation of the Simple And Efficient Data Encryption Algorithm (INTERNATIONAL JOURNAL OF SCIENTIFIC & TECHNOLOGY RESEARCH VOLUME 8, ISSUE 12, DECEMBER 2019 ISSN 2277-8616)",
"license": "MIT",
"web": "https://github.com/m33m33/libsaedea",
"doc": "https://github.com/m33m33/libsaedea/blob/master/README.md"
},
{
"name": "gsl",
"url": "https://github.com/YesDrX/gsl-nim.git",
"method": "git",
"tags": [
"gsl",
"gnu",
"numerical",
"scientific"
],
"description": "gsl C Api wrapped for nim",
"license": "GPL3",
"web": "https://github.com/YesDrX/gsl-nim/"
},
{
"name": "onnxruntime",
"url": "https://github.com/YesDrX/onnxruntime-nim.git",
"method": "git",
"tags": [
"onnxruntime"
],