-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathgen_tools_dependency.html
1283 lines (1198 loc) · 96.7 KB
/
gen_tools_dependency.html
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
<details>
<summary><a href='https://github.com/ahrefs/atd'>atd.2.15.0</a>
(2.15.0) Parser for the ATD data format description language</summary>
<dl>
<dt><b>authors</b></dt><dd>Martin Jambon <lt;[email protected]>gt; - Rudi Grinberg <lt;[email protected]>gt; - Martin Jambon <lt;[email protected]>gt; - Martin Jambon <lt;[email protected]>gt; - Ivan Jager <lt;[email protected]>gt; - oleksiy <lt;[email protected]>gt; - David Sheets <lt;[email protected]>gt; - Rudi Grinberg <lt;[email protected]>gt; - Martin Jambon <lt;[email protected]>gt; - Jeff Meister <lt;[email protected]>gt; - Caio Wakamatsu <lt;[email protected]>gt; - Carmelo Piccione <lt;[email protected]>gt; - Daniel Weil <lt;[email protected]>gt; - Egor Chemokhonenko <lt;[email protected]>gt; - Gabriel Scherer <lt;[email protected]>gt; - Raman Varabets <lt;[email protected]>gt; - tzm <lt;[email protected]>gt; - Mathieu Baudet <lt;[email protected]>gt; - Oleksiy Golovko <lt;[email protected]>gt; - Rauan Mayemir <lt;[email protected]>gt; - Carmelo Piccione <lt;[email protected]>gt; - John Billings <lt;[email protected]>gt; - Louis Roché <lt;[email protected]>gt; - Brendan Long <lt;[email protected]>gt; - Chris Yocum <lt;[email protected]>gt; - Louis Roché (Ahrefs) <lt;[email protected]>gt; - Louis Roché <lt;[email protected]>gt; - Pavel Antoshkin <lt;[email protected]>gt; - Pierre Boutillier <lt;[email protected]>gt; - Shon Feder <lt;[email protected]>gt; - Anurag Soni <lt;[email protected]>gt; - Arjun Ravi Narayan <lt;[email protected]>gt; - Asya-kawai <lt;[email protected]>gt; - Christophe Troestler <lt;[email protected]>gt; - Damien Doligez <lt;[email protected]>gt; - Daniel M <lt;[email protected]>gt; - Ding Xiang Fei <lt;[email protected]>gt; - François Pottier <lt;[email protected]>gt; - Javier Chavarri <lt;[email protected]>gt; - Kate <lt;[email protected]>gt; - Louis <lt;[email protected]>gt; - Louis Roché <lt;[email protected]>gt; - Raman Varabets <lt;[email protected]>gt; - Stephane Legrand <lt;[email protected]>gt; - Vincent Bernardoff <lt;[email protected]>gt; - haoyang <lt;[email protected]>gt; - pmundkur <lt;[email protected]>gt; - ygrek <lt;[email protected]>gt;</dd>
<dt><b>license</b></dt><dd> <a href="https://spdx.org/licenses/MIT.html" target="_blank">MIT</a></dd>
<dt><b>links</b></dt><dd>
(<a href='https://github.com/ahrefs/atd'>homepage</a>)
(<a href='https://github.com/ahrefs/atd/issues'>bug reports</a>)
(<a href='https://opam.ocaml.org/packages/atd/atd.2.15.0/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>ATD is the OCaml library providing a parser for the ATD language and various<br>utilities. ATD stands for Adjustable Type Definitions in reference to its main<br>property of supporting annotations that allow a good fit with a variety of data<br>formats. This package also provides the 'apos;atdcat'apos; and 'apos;atddiff'apos; command-line<br>utilities.</dd>
</dl>
</details>
<details>
<summary><a href='https://github.com/ahrefs/atd'>atdgen-runtime.2.15.0</a>
(2.15.0) Runtime library for code generated by atdgen</summary>
<dl>
<dt><b>authors</b></dt><dd>Martin Jambon <lt;[email protected]>gt; - Rudi Grinberg <lt;[email protected]>gt; - Martin Jambon <lt;[email protected]>gt; - Martin Jambon <lt;[email protected]>gt; - Ivan Jager <lt;[email protected]>gt; - oleksiy <lt;[email protected]>gt; - David Sheets <lt;[email protected]>gt; - Rudi Grinberg <lt;[email protected]>gt; - Martin Jambon <lt;[email protected]>gt; - Jeff Meister <lt;[email protected]>gt; - Caio Wakamatsu <lt;[email protected]>gt; - Carmelo Piccione <lt;[email protected]>gt; - Daniel Weil <lt;[email protected]>gt; - Egor Chemokhonenko <lt;[email protected]>gt; - Gabriel Scherer <lt;[email protected]>gt; - Raman Varabets <lt;[email protected]>gt; - tzm <lt;[email protected]>gt; - Mathieu Baudet <lt;[email protected]>gt; - Oleksiy Golovko <lt;[email protected]>gt; - Rauan Mayemir <lt;[email protected]>gt; - Carmelo Piccione <lt;[email protected]>gt; - John Billings <lt;[email protected]>gt; - Louis Roché <lt;[email protected]>gt; - Brendan Long <lt;[email protected]>gt; - Chris Yocum <lt;[email protected]>gt; - Louis Roché (Ahrefs) <lt;[email protected]>gt; - Louis Roché <lt;[email protected]>gt; - Pavel Antoshkin <lt;[email protected]>gt; - Pierre Boutillier <lt;[email protected]>gt; - Shon Feder <lt;[email protected]>gt; - Anurag Soni <lt;[email protected]>gt; - Arjun Ravi Narayan <lt;[email protected]>gt; - Asya-kawai <lt;[email protected]>gt; - Christophe Troestler <lt;[email protected]>gt; - Damien Doligez <lt;[email protected]>gt; - Daniel M <lt;[email protected]>gt; - Ding Xiang Fei <lt;[email protected]>gt; - François Pottier <lt;[email protected]>gt; - Javier Chavarri <lt;[email protected]>gt; - Kate <lt;[email protected]>gt; - Louis <lt;[email protected]>gt; - Louis Roché <lt;[email protected]>gt; - Raman Varabets <lt;[email protected]>gt; - Stephane Legrand <lt;[email protected]>gt; - Vincent Bernardoff <lt;[email protected]>gt; - haoyang <lt;[email protected]>gt; - pmundkur <lt;[email protected]>gt; - ygrek <lt;[email protected]>gt;</dd>
<dt><b>license</b></dt><dd> <a href="https://spdx.org/licenses/MIT.html" target="_blank">MIT</a></dd>
<dt><b>links</b></dt><dd>
(<a href='https://github.com/ahrefs/atd'>homepage</a>)
(<a href='https://github.com/ahrefs/atd/issues'>bug reports</a>)
(<a href='https://opam.ocaml.org/packages/atdgen-runtime/atdgen-runtime.2.15.0/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>This package should be used only in conjunction with the atdgen code<br>generator</dd>
</dl>
</details>
<details>
<summary><a href='https://github.com/ahrefs/atd'>atdgen.2.15.0</a>
(2.15.0) Generates efficient JSON serializers, deserializers and validators</summary>
<dl>
<dt><b>authors</b></dt><dd>Martin Jambon <lt;[email protected]>gt; - Rudi Grinberg <lt;[email protected]>gt; - Martin Jambon <lt;[email protected]>gt; - Martin Jambon <lt;[email protected]>gt; - Ivan Jager <lt;[email protected]>gt; - oleksiy <lt;[email protected]>gt; - David Sheets <lt;[email protected]>gt; - Rudi Grinberg <lt;[email protected]>gt; - Martin Jambon <lt;[email protected]>gt; - Jeff Meister <lt;[email protected]>gt; - Caio Wakamatsu <lt;[email protected]>gt; - Carmelo Piccione <lt;[email protected]>gt; - Daniel Weil <lt;[email protected]>gt; - Egor Chemokhonenko <lt;[email protected]>gt; - Gabriel Scherer <lt;[email protected]>gt; - Raman Varabets <lt;[email protected]>gt; - tzm <lt;[email protected]>gt; - Mathieu Baudet <lt;[email protected]>gt; - Oleksiy Golovko <lt;[email protected]>gt; - Rauan Mayemir <lt;[email protected]>gt; - Carmelo Piccione <lt;[email protected]>gt; - John Billings <lt;[email protected]>gt; - Louis Roché <lt;[email protected]>gt; - Brendan Long <lt;[email protected]>gt; - Chris Yocum <lt;[email protected]>gt; - Louis Roché (Ahrefs) <lt;[email protected]>gt; - Louis Roché <lt;[email protected]>gt; - Pavel Antoshkin <lt;[email protected]>gt; - Pierre Boutillier <lt;[email protected]>gt; - Shon Feder <lt;[email protected]>gt; - Anurag Soni <lt;[email protected]>gt; - Arjun Ravi Narayan <lt;[email protected]>gt; - Asya-kawai <lt;[email protected]>gt; - Christophe Troestler <lt;[email protected]>gt; - Damien Doligez <lt;[email protected]>gt; - Daniel M <lt;[email protected]>gt; - Ding Xiang Fei <lt;[email protected]>gt; - François Pottier <lt;[email protected]>gt; - Javier Chavarri <lt;[email protected]>gt; - Kate <lt;[email protected]>gt; - Louis <lt;[email protected]>gt; - Louis Roché <lt;[email protected]>gt; - Raman Varabets <lt;[email protected]>gt; - Stephane Legrand <lt;[email protected]>gt; - Vincent Bernardoff <lt;[email protected]>gt; - haoyang <lt;[email protected]>gt; - pmundkur <lt;[email protected]>gt; - ygrek <lt;[email protected]>gt;</dd>
<dt><b>license</b></dt><dd> <a href="https://spdx.org/licenses/MIT.html" target="_blank">MIT</a></dd>
<dt><b>links</b></dt><dd>
(<a href='https://github.com/ahrefs/atd'>homepage</a>)
(<a href='https://github.com/ahrefs/atd/issues'>bug reports</a>)
(<a href='https://opam.ocaml.org/packages/atdgen/atdgen.2.15.0/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>Atdgen is a command-line program that takes as input type definitions in the ATD<br>syntax and produces OCaml code suitable for data serialization and<br>deserialization.<br>Two data formats are currently supported, these are biniou and JSON.<br>Atdgen-biniou and Atdgen-json will refer to Atdgen used in one context or the<br>other.<br>Atdgen was designed with efficiency and durability in mind. Software authors are<br>encouraged to use Atdgen directly and to write tools that may reuse part of<br>Atdgen’s source code.</dd>
</dl>
</details>
<details>
<summary><a href='https://github.com/ahrefs/atd'>atdts.2.15.0</a>
(2.15.0) TypeScript code generation for ATD APIs</summary>
<dl>
<dt><b>authors</b></dt><dd>Martin Jambon <lt;[email protected]>gt; - Rudi Grinberg <lt;[email protected]>gt; - Martin Jambon <lt;[email protected]>gt; - Martin Jambon <lt;[email protected]>gt; - Ivan Jager <lt;[email protected]>gt; - oleksiy <lt;[email protected]>gt; - David Sheets <lt;[email protected]>gt; - Rudi Grinberg <lt;[email protected]>gt; - Martin Jambon <lt;[email protected]>gt; - Jeff Meister <lt;[email protected]>gt; - Caio Wakamatsu <lt;[email protected]>gt; - Carmelo Piccione <lt;[email protected]>gt; - Daniel Weil <lt;[email protected]>gt; - Egor Chemokhonenko <lt;[email protected]>gt; - Gabriel Scherer <lt;[email protected]>gt; - Raman Varabets <lt;[email protected]>gt; - tzm <lt;[email protected]>gt; - Mathieu Baudet <lt;[email protected]>gt; - Oleksiy Golovko <lt;[email protected]>gt; - Rauan Mayemir <lt;[email protected]>gt; - Carmelo Piccione <lt;[email protected]>gt; - John Billings <lt;[email protected]>gt; - Louis Roché <lt;[email protected]>gt; - Brendan Long <lt;[email protected]>gt; - Chris Yocum <lt;[email protected]>gt; - Louis Roché (Ahrefs) <lt;[email protected]>gt; - Louis Roché <lt;[email protected]>gt; - Pavel Antoshkin <lt;[email protected]>gt; - Pierre Boutillier <lt;[email protected]>gt; - Shon Feder <lt;[email protected]>gt; - Anurag Soni <lt;[email protected]>gt; - Arjun Ravi Narayan <lt;[email protected]>gt; - Asya-kawai <lt;[email protected]>gt; - Christophe Troestler <lt;[email protected]>gt; - Damien Doligez <lt;[email protected]>gt; - Daniel M <lt;[email protected]>gt; - Ding Xiang Fei <lt;[email protected]>gt; - François Pottier <lt;[email protected]>gt; - Javier Chavarri <lt;[email protected]>gt; - Kate <lt;[email protected]>gt; - Louis <lt;[email protected]>gt; - Louis Roché <lt;[email protected]>gt; - Raman Varabets <lt;[email protected]>gt; - Stephane Legrand <lt;[email protected]>gt; - Vincent Bernardoff <lt;[email protected]>gt; - haoyang <lt;[email protected]>gt; - pmundkur <lt;[email protected]>gt; - ygrek <lt;[email protected]>gt;</dd>
<dt><b>license</b></dt><dd> <a href="https://spdx.org/licenses/MIT.html" target="_blank">MIT</a></dd>
<dt><b>links</b></dt><dd>
(<a href='https://github.com/ahrefs/atd'>homepage</a>)
(<a href='https://github.com/ahrefs/atd/issues'>bug reports</a>)
(<a href='https://opam.ocaml.org/packages/atdts/atdts.2.15.0/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>TypeScript code generation for ATD APIs</dd>
</dl>
</details>
<details>
<summary><a href=''>base-bigarray.base</a>
(base) </summary>
<dl>
<dt><b>authors</b></dt><dd></dd>
<dt><b>license</b></dt><dd>unknown - please clarify with <a href="" target="_blank">homepage</a></dd>
<dt><b>links</b></dt><dd>
(<a href='https://opam.ocaml.org/packages/base-bigarray/base-bigarray.base/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>Bigarray library distributed with the OCaml compiler</dd>
</dl>
</details>
<details>
<summary><a href=''>base-threads.base</a>
(base) </summary>
<dl>
<dt><b>authors</b></dt><dd></dd>
<dt><b>license</b></dt><dd>unknown - please clarify with <a href="" target="_blank">homepage</a></dd>
<dt><b>links</b></dt><dd>
(<a href='https://opam.ocaml.org/packages/base-threads/base-threads.base/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>Threads library distributed with the OCaml compiler</dd>
</dl>
</details>
<details>
<summary><a href=''>base-unix.base</a>
(base) </summary>
<dl>
<dt><b>authors</b></dt><dd></dd>
<dt><b>license</b></dt><dd>unknown - please clarify with <a href="" target="_blank">homepage</a></dd>
<dt><b>links</b></dt><dd>
(<a href='https://opam.ocaml.org/packages/base-unix/base-unix.base/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>Unix library distributed with the OCaml compiler</dd>
</dl>
</details>
<details>
<summary><a href='https://github.com/janestreet/base'>base.v0.16.3</a>
(v0.16.3) Full standard library replacement for OCaml</summary>
<dl>
<dt><b>authors</b></dt><dd>Jane Street Group, LLC</dd>
<dt><b>license</b></dt><dd> <a href="https://spdx.org/licenses/MIT.html" target="_blank">MIT</a></dd>
<dt><b>links</b></dt><dd>
(<a href='https://github.com/janestreet/base'>homepage</a>)
(<a href='https://github.com/janestreet/base/issues'>bug reports</a>)
(<a href='https://opam.ocaml.org/packages/base/base.v0.16.3/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>Full standard library replacement for OCaml<br><br>Base is a complete and portable alternative to the OCaml standard<br>library. It provides all standard functionalities one would expect<br>from a language standard library. It uses consistent conventions<br>across all of its module.<br><br>Base aims to be usable in any context. As a result system dependent<br>features such as I/O are not offered by Base. They are instead<br>provided by companion libraries such as stdio:<br><br> https://github.com/janestreet/stdio</dd>
</dl>
</details>
<details>
<summary><a href='https://github.com/mjambon/biniou'>biniou.1.2.2</a>
(1.2.2) Binary data format designed for speed, safety, ease of use and backward compatibility as protocols evolve</summary>
<dl>
<dt><b>authors</b></dt><dd>Martin Jambon</dd>
<dt><b>license</b></dt><dd> <a href="https://spdx.org/licenses/BSD-3-Clause.html" target="_blank">BSD-3-Clause</a></dd>
<dt><b>links</b></dt><dd>
(<a href='https://github.com/mjambon/biniou'>homepage</a>)
(<a href='https://github.com/mjambon/biniou/issues'>bug reports</a>)
(<a href='https://opam.ocaml.org/packages/biniou/biniou.1.2.2/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>Biniou (pronounced \be new\) is a binary data format designed for speed, safety,<br>ease of use and backward compatibility as protocols evolve. Biniou is vastly<br>equivalent to JSON in terms of functionality but allows implementations several<br>times faster (4 times faster than yojson), with 25-35% space savings.<br><br>Biniou data can be decoded into human-readable form without knowledge of type<br>definitions except for field and variant names which are represented by 31-bit<br>hashes. A program named bdump is provided for routine visualization of biniou<br>data files.<br><br>The program atdgen is used to derive OCaml-Biniou serializers and deserializers<br>from type definitions.<br><br>Biniou format specification: mjambon.github.io/atdgen-doc/biniou-format.txt</dd>
</dl>
</details>
<details>
<summary><a href='https://github.com/Chris00/ocaml-cairo'>cairo2.0.6.4</a>
(0.6.4) Binding to Cairo, a 2D Vector Graphics Library</summary>
<dl>
<dt><b>authors</b></dt><dd>Christophe Troestler <lt;[email protected]>gt; - Pierre Hauweele <lt;[email protected]>gt;</dd>
<dt><b>license</b></dt><dd> <a href="https://spdx.org/licenses/LGPL-3.0.html" target="_blank">LGPL-3.0</a></dd>
<dt><b>links</b></dt><dd>
(<a href='https://github.com/Chris00/ocaml-cairo'>homepage</a>)
(<a href='https://github.com/Chris00/ocaml-cairo/issues'>bug reports</a>)
(<a href='https://opam.ocaml.org/packages/cairo2/cairo2.0.6.4/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>This is a binding to Cairo, a 2D graphics library with support for<br>multiple output devices. Currently supported output targets include<br>the X Window System, Quartz, Win32, image buffers, PostScript, PDF,<br>and SVG file output.</dd>
</dl>
</details>
<details>
<summary><a href='https://github.com/ocaml/camlp-streams'>camlp-streams.5.0.1</a>
(5.0.1) The Stream and Genlex libraries for use with Camlp4 and Camlp5</summary>
<dl>
<dt><b>authors</b></dt><dd>Daniel de Rauglaudre Xavier Leroy</dd>
<dt><b>license</b></dt><dd> LGPL-2.1-only WITH OCaml-LGPL-linking-exception - see <a href="https://github.com/ocaml/camlp-streams" target="_blank">homepage</a> for details</dd>
<dt><b>links</b></dt><dd>
(<a href='https://github.com/ocaml/camlp-streams'>homepage</a>)
(<a href='https://github.com/ocaml/camlp-streams/issues'>bug reports</a>)
(<a href='https://opam.ocaml.org/packages/camlp-streams/camlp-streams.5.0.1/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>This package provides two library modules:<br>- Stream: imperative streams, with in-place update and memoization<br> of the latest element produced.<br>- Genlex: a small parameterized lexical analyzer producing streams<br> of tokens from streams of characters.<br><br>The two modules are designed for use with Camlp4 and Camlp5:<br>- The stream patterns and stream expressions of Camlp4/Camlp5 consume<br> and produce data of type 'apos;a Stream.t.<br>- The Genlex tokenizer can be used as a simple lexical analyzer for<br> Camlp4/Camlp5-generated parsers.<br><br>The Stream module can also be used by hand-written recursive-descent<br>parsers, but is not very convenient for this purpose.<br><br>The Stream and Genlex modules have been part of the OCaml standard library<br>for a long time, and have been distributed as part of the core OCaml system.<br>They will be removed from the OCaml standard library at some future point,<br>but will be maintained and distributed separately in this camlpstreams package.</dd>
</dl>
</details>
<details>
<summary><a href='https://erratique.ch/software/cmdliner'>cmdliner.1.3.0</a>
(1.3.0) Declarative definition of command line interfaces for OCaml</summary>
<dl>
<dt><b>authors</b></dt><dd>The cmdliner programmers</dd>
<dt><b>license</b></dt><dd> <a href="https://spdx.org/licenses/ISC.html" target="_blank">ISC</a></dd>
<dt><b>links</b></dt><dd>
(<a href='https://erratique.ch/software/cmdliner'>homepage</a>)
(<a href='https://github.com/dbuenzli/cmdliner/issues'>bug reports</a>)
(<a href='https://opam.ocaml.org/packages/cmdliner/cmdliner.1.3.0/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>Cmdliner allows the declarative definition of command line interfaces<br>for OCaml.<br><br>It provides a simple and compositional mechanism to convert command<br>line arguments to OCaml values and pass them to your functions. The<br>module automatically handles syntax errors, help messages and UNIX man<br>page generation. It supports programs with single or multiple commands<br>and respects most of the [POSIX][1] and [GNU][2] conventions.<br><br>Cmdliner has no dependencies and is distributed under the ISC license.<br><br>[1]: http://pubs.opengroup.org/onlinepubs/009695399/basedefs/xbd_chap12.html<br>[2]: http://www.gnu.org/software/libc/manual/html_node/Argument-Syntax.html<br><br>Home page: http://erratique.ch/software/cmdliner</dd>
</dl>
</details>
<details>
<summary><a href='https://github.com/GNOME/adwaita-icon-theme'>adwaita-icon-theme.2</a>
(2) Virtual package relying on adwaita-icon-theme</summary>
<dl>
<dt><b>authors</b></dt><dd>GNOME devs</dd>
<dt><b>license</b></dt><dd> <a href="https://spdx.org/licenses/LGPL-3.0-only.html" target="_blank">LGPL-3.0-only</a> <a href="https://spdx.org/licenses/CC-BY-SA-3.0.html" target="_blank">CC-BY-SA-3.0</a></dd>
<dt><b>links</b></dt><dd>
(<a href='https://github.com/GNOME/adwaita-icon-theme'>homepage</a>)
(<a href='https://gitlab.gnome.org/GNOME/adwaita-icon-theme/issues'>bug reports</a>)
(<a href='https://opam.ocaml.org/packages/conf-adwaita-icon-theme/conf-adwaita-icon-theme.2/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>This package can only install if the adwaita-icon-theme package is installed on the system.</dd>
</dl>
</details>
<details>
<summary><a href='http://www.gnu.org/software/autoconf'>autoconf.0.2</a>
(0.2) Virtual package relying on autoconf installation</summary>
<dl>
<dt><b>authors</b></dt><dd>https://www.gnu.org/software/autoconf/autoconf.html#maintainer</dd>
<dt><b>license</b></dt><dd> <a href="https://spdx.org/licenses/GPL-3.0-only.html" target="_blank">GPL-3.0-only</a></dd>
<dt><b>links</b></dt><dd>
(<a href='http://www.gnu.org/software/autoconf'>homepage</a>)
(<a href='https://github.com/ocaml/opam-repository/issues'>bug reports</a>)
(<a href='https://opam.ocaml.org/packages/conf-autoconf/conf-autoconf.0.2/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>This package can only install if the autoconf command<br>is available on the system.</dd>
</dl>
</details>
<details>
<summary><a href='https://www.gnu.org/software/automake'>automake.1</a>
(1) Virtual package relying on GNU automake</summary>
<dl>
<dt><b>authors</b></dt><dd>Jim Meyering - David J. MacKenzie - https://git.savannah.gnu.org/cgit/automake.git/tree/THANKS </dd>
<dt><b>license</b></dt><dd> <a href="https://spdx.org/licenses/GPL-2.0-or-later.html" target="_blank">GPL-2.0-or-later</a></dd>
<dt><b>links</b></dt><dd>
(<a href='https://www.gnu.org/software/automake'>homepage</a>)
(<a href='https://www.gnu.org/software/automake/manual/html_node/Reporting-Bugs.html'>bug reports</a>)
(<a href='https://opam.ocaml.org/packages/conf-automake/conf-automake.1/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>This package can only install if GNU automake is installed on the system.</dd>
</dl>
</details>
<details>
<summary><a href='https://www.gnu.org/software/bash/'>bash.1</a>
(1) Virtual package to install the Bash shell</summary>
<dl>
<dt><b>authors</b></dt><dd>[email protected]</dd>
<dt><b>license</b></dt><dd> <a href="https://spdx.org/licenses/GPL-3.0-or-later.html" target="_blank">GPL-3.0-or-later</a></dd>
<dt><b>links</b></dt><dd>
(<a href='https://www.gnu.org/software/bash/'>homepage</a>)
(<a href='https://github.com/ocaml/opam-repository/issues'>bug reports</a>)
(<a href='https://opam.ocaml.org/packages/conf-bash/conf-bash.1/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>This package will install a system bash</dd>
</dl>
</details>
<details>
<summary><a href='https://www.gnu.org/software/bison/'>bison.2</a>
(2) Virtual package relying on GNU bison</summary>
<dl>
<dt><b>authors</b></dt><dd>Robert Corbett - Richard Stallman - Wilfred Hansen - Akim Demaille - Paul Hilfinger - Joel E. Denny - Paolo Bonzini - Alex Rozenman - Paul Eggert</dd>
<dt><b>license</b></dt><dd> <a href="https://spdx.org/licenses/GPL-3.0-or-later.html" target="_blank">GPL-3.0-or-later</a></dd>
<dt><b>links</b></dt><dd>
(<a href='https://www.gnu.org/software/bison/'>homepage</a>)
(<a href='https://lists.gnu.org/mailman/listinfo/bug-bison'>bug reports</a>)
(<a href='https://opam.ocaml.org/packages/conf-bison/conf-bison.2/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>This package can only install if GNU bison is installed on the system.</dd>
</dl>
</details>
<details>
<summary><a href='http://www.boost.org'>boost.1</a>
(1) Virtual package relying on boost</summary>
<dl>
<dt><b>authors</b></dt><dd>Beman Dawes, David Abrahams, et al.</dd>
<dt><b>license</b></dt><dd> <a href="https://spdx.org/licenses/MIT.html" target="_blank">MIT</a></dd>
<dt><b>links</b></dt><dd>
(<a href='http://www.boost.org'>homepage</a>)
(<a href='https://github.com/ocaml/opam-repository/issues'>bug reports</a>)
(<a href='https://opam.ocaml.org/packages/conf-boost/conf-boost.1/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>This package can only install if the boost library is installed on the system.</dd>
</dl>
</details>
<details>
<summary><a href='https://github.com/ocaml/opam-repository'>c++.1.0</a>
(1.0) Virtual package relying on the c++ compiler</summary>
<dl>
<dt><b>authors</b></dt><dd>C++ compiler developers</dd>
<dt><b>license</b></dt><dd> <a href="https://spdx.org/licenses/GPL-2.0-or-later.html" target="_blank">GPL-2.0-or-later</a></dd>
<dt><b>links</b></dt><dd>
(<a href='https://github.com/ocaml/opam-repository'>homepage</a>)
(<a href='https://github.com/ocaml/opam-repository/issues'>bug reports</a>)
(<a href='https://opam.ocaml.org/packages/conf-c++/conf-c++.1.0/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>This package can only install if the c++ compiler is installed on the system.</dd>
</dl>
</details>
<details>
<summary><a href='http://cairographics.org/'>cairo.1</a>
(1) Virtual package relying on a Cairo system installation</summary>
<dl>
<dt><b>authors</b></dt><dd>Keith Packard Carl Worth Behdad Esfahbod</dd>
<dt><b>license</b></dt><dd> <a href="https://spdx.org/licenses/LGPL-2.1-only.html" target="_blank">LGPL-2.1-only</a> <a href="https://spdx.org/licenses/MPL-1.1.html" target="_blank">MPL-1.1</a></dd>
<dt><b>links</b></dt><dd>
(<a href='http://cairographics.org/'>homepage</a>)
(<a href='https://github.com/ocaml/opam-repository/issues'>bug reports</a>)
(<a href='https://opam.ocaml.org/packages/conf-cairo/conf-cairo.1/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>This package can only install if the cairo lib is installed on the system.</dd>
</dl>
</details>
<details>
<summary><a href='https://www.gnu.org/software/findutils/'>findutils.1</a>
(1) Virtual package relying on findutils</summary>
<dl>
<dt><b>authors</b></dt><dd>GNU Project</dd>
<dt><b>license</b></dt><dd> <a href="https://spdx.org/licenses/GPL-3.0-or-later.html" target="_blank">GPL-3.0-or-later</a></dd>
<dt><b>links</b></dt><dd>
(<a href='https://www.gnu.org/software/findutils/'>homepage</a>)
(<a href='https://github.com/ocaml/opam-repository/issues'>bug reports</a>)
(<a href='https://opam.ocaml.org/packages/conf-findutils/conf-findutils.1/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>This package can only install if the findutils binary is installed on the system.</dd>
</dl>
</details>
<details>
<summary><a href='https://github.com/westes/flex'>flex.2</a>
(2) Virtual package relying on GNU flex</summary>
<dl>
<dt><b>authors</b></dt><dd>The Flex Project</dd>
<dt><b>license</b></dt><dd> <a href="https://github.com/westes/flex/blob/master/COPYING" target="_blank">link</a></dd>
<dt><b>links</b></dt><dd>
(<a href='https://github.com/westes/flex'>homepage</a>)
(<a href='https://github.com/westes/flex/issues'>bug reports</a>)
(<a href='https://opam.ocaml.org/packages/conf-flex/conf-flex.2/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>This package can only install if GNU flex is installed on the system.</dd>
</dl>
</details>
<details>
<summary><a href='https://github.com/ocaml/opam-repository'>g++.1.0</a>
(1.0) Virtual package relying on the g++ compiler (for C++)</summary>
<dl>
<dt><b>authors</b></dt><dd>Francois Berenger</dd>
<dt><b>license</b></dt><dd> <a href="https://spdx.org/licenses/GPL-2.0-or-later.html" target="_blank">GPL-2.0-or-later</a></dd>
<dt><b>links</b></dt><dd>
(<a href='https://github.com/ocaml/opam-repository'>homepage</a>)
(<a href='https://github.com/ocaml/opam-repository/issues'>bug reports</a>)
(<a href='https://opam.ocaml.org/packages/conf-g++/conf-g++.1.0/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>This package can only install if the g++ compiler is installed on the system.</dd>
</dl>
</details>
<details>
<summary><a href='https://github.com/ocaml/opam-repository'>gcc.1.0</a>
(1.0) Virtual package relying on the gcc compiler (for C)</summary>
<dl>
<dt><b>authors</b></dt><dd>Francois Berenger Francois Bobot</dd>
<dt><b>license</b></dt><dd> <a href="https://spdx.org/licenses/GPL-2.0-or-later.html" target="_blank">GPL-2.0-or-later</a></dd>
<dt><b>links</b></dt><dd>
(<a href='https://github.com/ocaml/opam-repository'>homepage</a>)
(<a href='https://github.com/ocaml/opam-repository/issues'>bug reports</a>)
(<a href='https://opam.ocaml.org/packages/conf-gcc/conf-gcc.1.0/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>This package can only install if the gcc compiler is installed on the system.</dd>
</dl>
</details>
<details>
<summary><a href='http://gmplib.org/'>gmp.4</a>
(4) Virtual package relying on a GMP lib system installation</summary>
<dl>
<dt><b>authors</b></dt><dd>nbraud</dd>
<dt><b>license</b></dt><dd> <a href="https://spdx.org/licenses/GPL-1.0-or-later.html" target="_blank">GPL-1.0-or-later</a></dd>
<dt><b>links</b></dt><dd>
(<a href='http://gmplib.org/'>homepage</a>)
(<a href='https://github.com/ocaml/opam-repository/issues'>bug reports</a>)
(<a href='https://opam.ocaml.org/packages/conf-gmp/conf-gmp.4/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>This package can only install if the GMP lib is installed on the system.</dd>
</dl>
</details>
<details>
<summary><a href='https://developer.gnome.org/'>gtk3.18</a>
(18) Virtual package relying on GTK+ 3</summary>
<dl>
<dt><b>authors</b></dt><dd>The GTK Toolkit</dd>
<dt><b>license</b></dt><dd>unknown - please clarify with <a href="https://developer.gnome.org/" target="_blank">homepage</a></dd>
<dt><b>links</b></dt><dd>
(<a href='https://developer.gnome.org/'>homepage</a>)
(<a href='https://github.com/garrigue/lablgtk/issues'>bug reports</a>)
(<a href='https://github.com/coq/platform/tree/main/opam/opam-repository/packages/conf-gtk3/conf-gtk3.18/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>This package can only install if GTK+ 3 is installed on the system.</dd>
</dl>
</details>
<details>
<summary><a href='https://projects.gnome.org/gtksourceview/'>gtksourceview3.0+2</a>
(0+2) Virtual package relying on a GtkSourceView-3 system installation</summary>
<dl>
<dt><b>authors</b></dt><dd>The gtksourceview programmers</dd>
<dt><b>license</b></dt><dd> <a href="https://spdx.org/licenses/LGPL-2.1-or-later.html" target="_blank">LGPL-2.1-or-later</a></dd>
<dt><b>links</b></dt><dd>
(<a href='https://projects.gnome.org/gtksourceview/'>homepage</a>)
(<a href='https://github.com/ocaml/opam-repository/issues'>bug reports</a>)
(<a href='https://github.com/coq/platform/tree/main/opam/opam-repository/packages/conf-gtksourceview3/conf-gtksourceview3.0+2/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>This package can only install if libgtksourceview-3.0-dev is installed on the system.</dd>
</dl>
</details>
<details>
<summary><a href='http://libjpeg.sourceforge.net/'>libjpeg.1</a>
(1) Virtual package relying on a libjpeg system installation</summary>
<dl>
<dt><b>authors</b></dt><dd>Bob Friesenhahn Lee Howard Frank Warmerdam</dd>
<dt><b>license</b></dt><dd> BSD-like - see <a href="http://libjpeg.sourceforge.net/" target="_blank">homepage</a> for details</dd>
<dt><b>links</b></dt><dd>
(<a href='http://libjpeg.sourceforge.net/'>homepage</a>)
(<a href='https://github.com/ocaml/opam-repository/issues'>bug reports</a>)
(<a href='https://opam.ocaml.org/packages/conf-libjpeg/conf-libjpeg.1/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>This package can only install if the libjpeg is installed on the system.</dd>
</dl>
</details>
<details>
<summary><a href='http://www.gnu.org/software/libtool'>libtool.1</a>
(1) Virtual package relying on libtool installation</summary>
<dl>
<dt><b>authors</b></dt><dd>https://www.gnu.org/software/libtool/libtool.html#maintainer</dd>
<dt><b>license</b></dt><dd> <a href="https://spdx.org/licenses/GPL-3.0-only.html" target="_blank">GPL-3.0-only</a></dd>
<dt><b>links</b></dt><dd>
(<a href='http://www.gnu.org/software/libtool'>homepage</a>)
(<a href='https://github.com/ocaml/opam-repository/issues'>bug reports</a>)
(<a href='https://opam.ocaml.org/packages/conf-libtool/conf-libtool.1/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>This package can only install if the libtool command<br>is available on the system.</dd>
</dl>
</details>
<details>
<summary><a href='http://www.mpfr.org/'>mpfr.3</a>
(3) Virtual package relying on library MPFR installation</summary>
<dl>
<dt><b>authors</b></dt><dd>http://www.mpfr.org/credit.html</dd>
<dt><b>license</b></dt><dd> <a href="https://spdx.org/licenses/LGPL-2.0-or-later.html" target="_blank">LGPL-2.0-or-later</a></dd>
<dt><b>links</b></dt><dd>
(<a href='http://www.mpfr.org/'>homepage</a>)
(<a href='https://github.com/ocaml/opam-repository/issues'>bug reports</a>)
(<a href='https://opam.ocaml.org/packages/conf-mpfr/conf-mpfr.3/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>This package can only install if the MPFR library is installed on the system.</dd>
</dl>
</details>
<details>
<summary><a href='http://www.freedesktop.org/wiki/Software/pkg-config/'>pkg-config.3</a>
(3) Check if pkg-config is installed and create an opam switch local pkgconfig folder</summary>
<dl>
<dt><b>authors</b></dt><dd>Francois Berenger</dd>
<dt><b>license</b></dt><dd> <a href="https://spdx.org/licenses/GPL-1.0-or-later.html" target="_blank">GPL-1.0-or-later</a></dd>
<dt><b>links</b></dt><dd>
(<a href='http://www.freedesktop.org/wiki/Software/pkg-config/'>homepage</a>)
(<a href='https://github.com/ocaml/opam-repository/issues'>bug reports</a>)
(<a href='https://opam.ocaml.org/packages/conf-pkg-config/conf-pkg-config.3/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>This package can only install if the pkg-config package is installed<br>on the system.</dd>
</dl>
</details>
<details>
<summary><a href='https://www.python.org/downloads/release/python-3910/'>python-3.9.0.0</a>
(9.0.0) Virtual package relying on Python-3 installation</summary>
<dl>
<dt><b>authors</b></dt><dd>Python Software Foundation</dd>
<dt><b>license</b></dt><dd> PSF - see <a href="https://www.python.org/downloads/release/python-3910/" target="_blank">homepage</a> for details</dd>
<dt><b>links</b></dt><dd>
(<a href='https://www.python.org/downloads/release/python-3910/'>homepage</a>)
(<a href='https://github.com/ocaml/opam-repository/issues'>bug reports</a>)
(<a href='https://github.com/coq/platform/tree/main/opam/opam-repository/packages/conf-python-3/conf-python-3.9.0.0/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>This package can only install if a Python-3 interpreter is available<br>on the system.<br>If a minor version needs to be specified for your operating system, then<br>python-3.9 will be used.</dd>
</dl>
</details>
<details>
<summary><a href='https://coq.inria.fr/'>coq-core.8.19.2</a>
(8.19.2) The Coq Proof Assistant -- Core Binaries and Tools</summary>
<dl>
<dt><b>authors</b></dt><dd>The Coq development team, INRIA, CNRS, and contributors</dd>
<dt><b>license</b></dt><dd> <a href="https://spdx.org/licenses/LGPL-2.1-only.html" target="_blank">LGPL-2.1-only</a></dd>
<dt><b>links</b></dt><dd>
(<a href='https://coq.inria.fr/'>homepage</a>)
(<a href='https://github.com/coq/coq/issues'>bug reports</a>)
(<a href='https://github.com/coq/platform/tree/main/opam/opam-repository/packages/coq-core/coq-core.8.19.2/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>Coq is a formal proof management system. It provides<br>a formal language to write mathematical definitions, executable<br>algorithms and theorems together with an environment for<br>semi-interactive development of machine-checked proofs.<br><br>Typical applications include the certification of properties of<br>programming languages (e.g. the CompCert compiler certification<br>project, or the Bedrock verified low-level programming library), the<br>formalization of mathematics (e.g. the full formalization of the<br>Feit-Thompson theorem or homotopy type theory) and teaching.<br><br>This package includes the Coq core binaries, plugins, and tools, but<br>not the vernacular standard library.<br><br>Note that in this setup, Coq needs to be started with the -boot and<br>-noinit options, as will otherwise fail to find the regular Coq<br>prelude, now living in the coq-stdlib package.</dd>
</dl>
</details>
<details>
<summary><a href='https://github.com/math-comp/analysis'>coq-mathcomp-classical.1.1.0</a>
(1.1.0) A library for classical logic for mathematical components</summary>
<dl>
<dt><b>authors</b></dt><dd>Reynald Affeldt - Alessandro Bruni - Yves Bertot - Cyril Cohen - Marie Kerjean - Assia Mahboubi - Damien Rouhling - Pierre Roux - Kazuhiko Sakaguchi - Zachary Stone - Pierre-Yves Strub - Laurent Théry</dd>
<dt><b>license</b></dt><dd> <a href="https://spdx.org/licenses/CECILL-C.html" target="_blank">CECILL-C</a></dd>
<dt><b>links</b></dt><dd>
(<a href='https://github.com/math-comp/analysis'>homepage</a>)
(<a href='https://github.com/math-comp/analysis/issues'>bug reports</a>)
(<a href='https://coq.inria.fr/opam/released/packages/coq-mathcomp-classical/coq-mathcomp-classical.1.1.0/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>This repository contains a library for classical logic for<br>the Coq proof-assistant and using the Mathematical Components library.</dd>
</dl>
</details>
<details>
<summary><a href='https://metacoq.github.io/metacoq'>coq-metacoq-common.1.3.1+8.19</a>
(1.3.1+8.19) The common library of Template Coq and PCUIC</summary>
<dl>
<dt><b>authors</b></dt><dd>Abhishek Anand <lt;[email protected]>gt; - Danil Annenkov <lt;[email protected]>gt; - Simon Boulier <lt;[email protected]>gt; - Cyril Cohen <lt;[email protected]>gt; - Yannick Forster <lt;[email protected]>gt; - Jason Gross <lt;[email protected]>gt; - Fabian Kunze <lt;[email protected]>gt; - Meven Lennon-Bertrand <lt;[email protected]>gt; - Kenji Maillard <lt;[email protected]>gt; - Gregory Malecha <lt;[email protected]>gt; - Jakob Botsch Nielsen <lt;[email protected]>gt; - Matthieu Sozeau <lt;[email protected]>gt; - Nicolas Tabareau <lt;[email protected]>gt; - Théo Winterhalter <lt;[email protected]>gt;</dd>
<dt><b>license</b></dt><dd> <a href="https://spdx.org/licenses/MIT.html" target="_blank">MIT</a></dd>
<dt><b>links</b></dt><dd>
(<a href='https://metacoq.github.io/metacoq'>homepage</a>)
(<a href='https://github.com/MetaCoq/metacoq/issues'>bug reports</a>)
(<a href='https://coq.inria.fr/opam/released/packages/coq-metacoq-common/coq-metacoq-common.1.3.1+8.19/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>MetaCoq is a meta-programming framework for Coq.</dd>
</dl>
</details>
<details>
<summary><a href='https://metacoq.github.io/metacoq'>coq-metacoq-erasure-plugin.1.3.1+8.19</a>
(1.3.1+8.19) Implementation and verification of an erasure procedure for Coq</summary>
<dl>
<dt><b>authors</b></dt><dd>Abhishek Anand <lt;[email protected]>gt; - Danil Annenkov <lt;[email protected]>gt; - Simon Boulier <lt;[email protected]>gt; - Cyril Cohen <lt;[email protected]>gt; - Yannick Forster <lt;[email protected]>gt; - Jason Gross <lt;[email protected]>gt; - Fabian Kunze <lt;[email protected]>gt; - Meven Lennon-Bertrand <lt;[email protected]>gt; - Kenji Maillard <lt;[email protected]>gt; - Gregory Malecha <lt;[email protected]>gt; - Jakob Botsch Nielsen <lt;[email protected]>gt; - Matthieu Sozeau <lt;[email protected]>gt; - Nicolas Tabareau <lt;[email protected]>gt; - Théo Winterhalter <lt;[email protected]>gt;</dd>
<dt><b>license</b></dt><dd> <a href="https://spdx.org/licenses/MIT.html" target="_blank">MIT</a></dd>
<dt><b>links</b></dt><dd>
(<a href='https://metacoq.github.io/metacoq'>homepage</a>)
(<a href='https://github.com/MetaCoq/metacoq/issues'>bug reports</a>)
(<a href='https://coq.inria.fr/opam/released/packages/coq-metacoq-erasure-plugin/coq-metacoq-erasure-plugin.1.3.1+8.19/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>MetaCoq is a meta-programming framework for Coq.<br><br>The Erasure module provides a complete specification of Coq'apos;s so-called<br>\extraction\ procedure, starting from the PCUIC calculus and targeting<br>untyped call-by-value lambda-calculus.<br><br>The `erasure` function translates types and proofs in well-typed terms<br>into a dummy `tBox` constructor, following closely P. Letouzey'apos;s PhD<br>thesis.</dd>
</dl>
</details>
<details>
<summary><a href='https://metacoq.github.io/metacoq'>coq-metacoq-erasure.1.3.1+8.19</a>
(1.3.1+8.19) Implementation and verification of an erasure procedure for Coq</summary>
<dl>
<dt><b>authors</b></dt><dd>Abhishek Anand <lt;[email protected]>gt; - Danil Annenkov <lt;[email protected]>gt; - Simon Boulier <lt;[email protected]>gt; - Cyril Cohen <lt;[email protected]>gt; - Yannick Forster <lt;[email protected]>gt; - Jason Gross <lt;[email protected]>gt; - Fabian Kunze <lt;[email protected]>gt; - Meven Lennon-Bertrand <lt;[email protected]>gt; - Kenji Maillard <lt;[email protected]>gt; - Gregory Malecha <lt;[email protected]>gt; - Jakob Botsch Nielsen <lt;[email protected]>gt; - Matthieu Sozeau <lt;[email protected]>gt; - Nicolas Tabareau <lt;[email protected]>gt; - Théo Winterhalter <lt;[email protected]>gt;</dd>
<dt><b>license</b></dt><dd> <a href="https://spdx.org/licenses/MIT.html" target="_blank">MIT</a></dd>
<dt><b>links</b></dt><dd>
(<a href='https://metacoq.github.io/metacoq'>homepage</a>)
(<a href='https://github.com/MetaCoq/metacoq/issues'>bug reports</a>)
(<a href='https://coq.inria.fr/opam/released/packages/coq-metacoq-erasure/coq-metacoq-erasure.1.3.1+8.19/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>MetaCoq is a meta-programming framework for Coq.<br><br>The Erasure module provides a complete specification of Coq'apos;s so-called<br>\extraction\ procedure, starting from the PCUIC calculus and targeting<br>untyped call-by-value lambda-calculus.<br><br>The `erasure` function translates types and proofs in well-typed terms<br>into a dummy `tBox` constructor, following closely P. Letouzey'apos;s PhD<br>thesis.</dd>
</dl>
</details>
<details>
<summary><a href='https://metacoq.github.io/metacoq'>coq-metacoq-pcuic.1.3.1+8.19</a>
(1.3.1+8.19) A type system equivalent to Coq'apos;s and its metatheory</summary>
<dl>
<dt><b>authors</b></dt><dd>Abhishek Anand <lt;[email protected]>gt; - Danil Annenkov <lt;[email protected]>gt; - Simon Boulier <lt;[email protected]>gt; - Cyril Cohen <lt;[email protected]>gt; - Yannick Forster <lt;[email protected]>gt; - Jason Gross <lt;[email protected]>gt; - Fabian Kunze <lt;[email protected]>gt; - Meven Lennon-Bertrand <lt;[email protected]>gt; - Kenji Maillard <lt;[email protected]>gt; - Gregory Malecha <lt;[email protected]>gt; - Jakob Botsch Nielsen <lt;[email protected]>gt; - Matthieu Sozeau <lt;[email protected]>gt; - Nicolas Tabareau <lt;[email protected]>gt; - Théo Winterhalter <lt;[email protected]>gt;</dd>
<dt><b>license</b></dt><dd> <a href="https://spdx.org/licenses/MIT.html" target="_blank">MIT</a></dd>
<dt><b>links</b></dt><dd>
(<a href='https://metacoq.github.io/metacoq'>homepage</a>)
(<a href='https://github.com/MetaCoq/metacoq/issues'>bug reports</a>)
(<a href='https://coq.inria.fr/opam/released/packages/coq-metacoq-pcuic/coq-metacoq-pcuic.1.3.1+8.19/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>MetaCoq is a meta-programming framework for Coq.<br><br>The PCUIC module provides a cleaned-up specification of Coq'apos;s typing algorithm along<br>with a certified typechecker for it. This module includes the standard metatheory of<br>PCUIC: Weakening, Substitution, Confluence and Subject Reduction are proven here.</dd>
</dl>
</details>
<details>
<summary><a href='https://metacoq.github.io/metacoq'>coq-metacoq-quotation.1.3.1+8.19</a>
(1.3.1+8.19) Gallina quotation functions for Template Coq</summary>
<dl>
<dt><b>authors</b></dt><dd>Abhishek Anand <lt;[email protected]>gt; - Danil Annenkov <lt;[email protected]>gt; - Simon Boulier <lt;[email protected]>gt; - Cyril Cohen <lt;[email protected]>gt; - Yannick Forster <lt;[email protected]>gt; - Jason Gross <lt;[email protected]>gt; - Fabian Kunze <lt;[email protected]>gt; - Meven Lennon-Bertrand <lt;[email protected]>gt; - Kenji Maillard <lt;[email protected]>gt; - Gregory Malecha <lt;[email protected]>gt; - Jakob Botsch Nielsen <lt;[email protected]>gt; - Matthieu Sozeau <lt;[email protected]>gt; - Nicolas Tabareau <lt;[email protected]>gt; - Théo Winterhalter <lt;[email protected]>gt;</dd>
<dt><b>license</b></dt><dd> <a href="https://spdx.org/licenses/MIT.html" target="_blank">MIT</a></dd>
<dt><b>links</b></dt><dd>
(<a href='https://metacoq.github.io/metacoq'>homepage</a>)
(<a href='https://github.com/MetaCoq/metacoq/issues'>bug reports</a>)
(<a href='https://coq.inria.fr/opam/released/packages/coq-metacoq-quotation/coq-metacoq-quotation.1.3.1+8.19/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>MetaCoq is a meta-programming framework for Coq.<br><br>The Quotation module is geared at providing functions `□T → □□T` for<br>`□T := Ast.term` (currently implemented) and for `□T := { t : Ast.term<br>& Σ ;;; [] |- t : T }` (still in the works). Currently `Ast.term →<br>Ast.term` and `(Σ ;;; [] |- t : T) → Ast.term` functions are provided<br>for Template and PCUIC terms, in `MetaCoq.Quotation.ToTemplate.All`<br>and `MetaCoq.Quotation.ToPCUIC.All`. Proving well-typedness is still<br>a work in progress.<br><br>Ultimately the goal of this development is to prove that `□` is a lax monoidal<br>semicomonad (a functor with `cojoin : □T → □□T` that codistributes over `unit`<br>and `×`), which is sufficient for proving Löb'apos;s theorem.</dd>
</dl>
</details>
<details>
<summary><a href='https://metacoq.github.io/metacoq'>coq-metacoq-safechecker-plugin.1.3.1+8.19</a>
(1.3.1+8.19) Implementation and verification of an erasure procedure for Coq</summary>
<dl>
<dt><b>authors</b></dt><dd>Abhishek Anand <lt;[email protected]>gt; - Danil Annenkov <lt;[email protected]>gt; - Simon Boulier <lt;[email protected]>gt; - Cyril Cohen <lt;[email protected]>gt; - Yannick Forster <lt;[email protected]>gt; - Jason Gross <lt;[email protected]>gt; - Fabian Kunze <lt;[email protected]>gt; - Meven Lennon-Bertrand <lt;[email protected]>gt; - Kenji Maillard <lt;[email protected]>gt; - Gregory Malecha <lt;[email protected]>gt; - Jakob Botsch Nielsen <lt;[email protected]>gt; - Matthieu Sozeau <lt;[email protected]>gt; - Nicolas Tabareau <lt;[email protected]>gt; - Théo Winterhalter <lt;[email protected]>gt;</dd>
<dt><b>license</b></dt><dd> <a href="https://spdx.org/licenses/MIT.html" target="_blank">MIT</a></dd>
<dt><b>links</b></dt><dd>
(<a href='https://metacoq.github.io/metacoq'>homepage</a>)
(<a href='https://github.com/MetaCoq/metacoq/issues'>bug reports</a>)
(<a href='https://coq.inria.fr/opam/released/packages/coq-metacoq-safechecker-plugin/coq-metacoq-safechecker-plugin.1.3.1+8.19/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>MetaCoq is a meta-programming framework for Coq.<br><br>The Erasure module provides a complete specification of Coq'apos;s so-called<br>\extraction\ procedure, starting from the PCUIC calculus and targeting<br>untyped call-by-value lambda-calculus.<br><br>The `erasure` function translates types and proofs in well-typed terms<br>into a dummy `tBox` constructor, following closely P. Letouzey'apos;s PhD<br>thesis.</dd>
</dl>
</details>
<details>
<summary><a href='https://metacoq.github.io/metacoq'>coq-metacoq-safechecker.1.3.1+8.19</a>
(1.3.1+8.19) Implementation and verification of safe conversion and typechecking algorithms for Coq</summary>
<dl>
<dt><b>authors</b></dt><dd>Abhishek Anand <lt;[email protected]>gt; - Danil Annenkov <lt;[email protected]>gt; - Simon Boulier <lt;[email protected]>gt; - Cyril Cohen <lt;[email protected]>gt; - Yannick Forster <lt;[email protected]>gt; - Jason Gross <lt;[email protected]>gt; - Fabian Kunze <lt;[email protected]>gt; - Meven Lennon-Bertrand <lt;[email protected]>gt; - Kenji Maillard <lt;[email protected]>gt; - Gregory Malecha <lt;[email protected]>gt; - Jakob Botsch Nielsen <lt;[email protected]>gt; - Matthieu Sozeau <lt;[email protected]>gt; - Nicolas Tabareau <lt;[email protected]>gt; - Théo Winterhalter <lt;[email protected]>gt;</dd>
<dt><b>license</b></dt><dd> <a href="https://spdx.org/licenses/MIT.html" target="_blank">MIT</a></dd>
<dt><b>links</b></dt><dd>
(<a href='https://metacoq.github.io/metacoq'>homepage</a>)
(<a href='https://github.com/MetaCoq/metacoq/issues'>bug reports</a>)
(<a href='https://coq.inria.fr/opam/released/packages/coq-metacoq-safechecker/coq-metacoq-safechecker.1.3.1+8.19/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>MetaCoq is a meta-programming framework for Coq.<br><br>The SafeChecker modules provides a correct implementation of<br>weak-head reduction, conversion and typechecking of Coq definitions and global environments.</dd>
</dl>
</details>
<details>
<summary><a href='https://metacoq.github.io/metacoq'>coq-metacoq-template-pcuic.1.3.1+8.19</a>
(1.3.1+8.19) Translations between Template Coq and PCUIC and proofs of correctness</summary>
<dl>
<dt><b>authors</b></dt><dd>Abhishek Anand <lt;[email protected]>gt; - Danil Annenkov <lt;[email protected]>gt; - Simon Boulier <lt;[email protected]>gt; - Cyril Cohen <lt;[email protected]>gt; - Yannick Forster <lt;[email protected]>gt; - Jason Gross <lt;[email protected]>gt; - Fabian Kunze <lt;[email protected]>gt; - Meven Lennon-Bertrand <lt;[email protected]>gt; - Kenji Maillard <lt;[email protected]>gt; - Gregory Malecha <lt;[email protected]>gt; - Jakob Botsch Nielsen <lt;[email protected]>gt; - Matthieu Sozeau <lt;[email protected]>gt; - Nicolas Tabareau <lt;[email protected]>gt; - Théo Winterhalter <lt;[email protected]>gt;</dd>
<dt><b>license</b></dt><dd> <a href="https://spdx.org/licenses/MIT.html" target="_blank">MIT</a></dd>
<dt><b>links</b></dt><dd>
(<a href='https://metacoq.github.io/metacoq'>homepage</a>)
(<a href='https://github.com/MetaCoq/metacoq/issues'>bug reports</a>)
(<a href='https://coq.inria.fr/opam/released/packages/coq-metacoq-template-pcuic/coq-metacoq-template-pcuic.1.3.1+8.19/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd></dd>
</dl>
</details>
<details>
<summary><a href='https://metacoq.github.io/metacoq'>coq-metacoq-template.1.3.1+8.19</a>
(1.3.1+8.19) A quoting and unquoting library for Coq in Coq</summary>
<dl>
<dt><b>authors</b></dt><dd>Abhishek Anand <lt;[email protected]>gt; - Danil Annenkov <lt;[email protected]>gt; - Simon Boulier <lt;[email protected]>gt; - Cyril Cohen <lt;[email protected]>gt; - Yannick Forster <lt;[email protected]>gt; - Jason Gross <lt;[email protected]>gt; - Fabian Kunze <lt;[email protected]>gt; - Meven Lennon-Bertrand <lt;[email protected]>gt; - Kenji Maillard <lt;[email protected]>gt; - Gregory Malecha <lt;[email protected]>gt; - Jakob Botsch Nielsen <lt;[email protected]>gt; - Matthieu Sozeau <lt;[email protected]>gt; - Nicolas Tabareau <lt;[email protected]>gt; - Théo Winterhalter <lt;[email protected]>gt;</dd>
<dt><b>license</b></dt><dd> <a href="https://spdx.org/licenses/MIT.html" target="_blank">MIT</a></dd>
<dt><b>links</b></dt><dd>
(<a href='https://metacoq.github.io/metacoq'>homepage</a>)
(<a href='https://github.com/MetaCoq/metacoq/issues'>bug reports</a>)
(<a href='https://github.com/coq/platform/tree/main/opam/opam-coq-archive/released/packages/coq-metacoq-template/coq-metacoq-template.1.3.1+8.19/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>MetaCoq is a meta-programming framework for Coq.<br><br>Template Coq is a quoting library for Coq. It takes Coq terms and<br>constructs a representation of their syntax tree as a Coq inductive data<br>type. The representation is based on the kernel'apos;s term representation.<br><br>In addition to a complete reification and denotation of CIC terms,<br>Template Coq includes:<br><br>- Reification of the environment structures, for constant and inductive declarations.<br>- Denotation of terms and global declarations<br>- A monad for manipulating global declarations, calling the type<br> checker, and inserting them in the global environment, in the style of<br> MetaCoq/MTac.</dd>
</dl>
</details>
<details>
<summary><a href='https://metacoq.github.io/metacoq'>coq-metacoq-translations.1.3.1+8.19</a>
(1.3.1+8.19) Translations built on top of MetaCoq</summary>
<dl>
<dt><b>authors</b></dt><dd>Abhishek Anand <lt;[email protected]>gt; - Danil Annenkov <lt;[email protected]>gt; - Simon Boulier <lt;[email protected]>gt; - Cyril Cohen <lt;[email protected]>gt; - Yannick Forster <lt;[email protected]>gt; - Jason Gross <lt;[email protected]>gt; - Fabian Kunze <lt;[email protected]>gt; - Meven Lennon-Bertrand <lt;[email protected]>gt; - Kenji Maillard <lt;[email protected]>gt; - Gregory Malecha <lt;[email protected]>gt; - Jakob Botsch Nielsen <lt;[email protected]>gt; - Matthieu Sozeau <lt;[email protected]>gt; - Nicolas Tabareau <lt;[email protected]>gt; - Théo Winterhalter <lt;[email protected]>gt;</dd>
<dt><b>license</b></dt><dd> <a href="https://spdx.org/licenses/MIT.html" target="_blank">MIT</a></dd>
<dt><b>links</b></dt><dd>
(<a href='https://metacoq.github.io/metacoq'>homepage</a>)
(<a href='https://github.com/MetaCoq/metacoq/issues'>bug reports</a>)
(<a href='https://coq.inria.fr/opam/released/packages/coq-metacoq-translations/coq-metacoq-translations.1.3.1+8.19/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>MetaCoq is a meta-programming framework for Coq.<br><br>The Translations modules provides implementation of standard translations<br>from type theory to type theory, e.g. parametricity and the `cross-bool`<br>translation that invalidates functional extensionality.</dd>
</dl>
</details>
<details>
<summary><a href='https://metacoq.github.io/metacoq'>coq-metacoq-utils.1.3.1+8.19</a>
(1.3.1+8.19) The utility library of Template Coq and PCUIC</summary>
<dl>
<dt><b>authors</b></dt><dd>Abhishek Anand <lt;[email protected]>gt; - Danil Annenkov <lt;[email protected]>gt; - Simon Boulier <lt;[email protected]>gt; - Cyril Cohen <lt;[email protected]>gt; - Yannick Forster <lt;[email protected]>gt; - Jason Gross <lt;[email protected]>gt; - Fabian Kunze <lt;[email protected]>gt; - Meven Lennon-Bertrand <lt;[email protected]>gt; - Kenji Maillard <lt;[email protected]>gt; - Gregory Malecha <lt;[email protected]>gt; - Jakob Botsch Nielsen <lt;[email protected]>gt; - Matthieu Sozeau <lt;[email protected]>gt; - Nicolas Tabareau <lt;[email protected]>gt; - Théo Winterhalter <lt;[email protected]>gt;</dd>
<dt><b>license</b></dt><dd> <a href="https://spdx.org/licenses/MIT.html" target="_blank">MIT</a></dd>
<dt><b>links</b></dt><dd>
(<a href='https://metacoq.github.io/metacoq'>homepage</a>)
(<a href='https://github.com/MetaCoq/metacoq/issues'>bug reports</a>)
(<a href='https://coq.inria.fr/opam/released/packages/coq-metacoq-utils/coq-metacoq-utils.1.3.1+8.19/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>MetaCoq is a meta-programming framework for Coq.</dd>
</dl>
</details>
<details>
<summary><a href='https://coq.inria.fr/'>coq-stdlib.8.19.2</a>
(8.19.2) The Coq Proof Assistant -- Standard Library</summary>
<dl>
<dt><b>authors</b></dt><dd>The Coq development team, INRIA, CNRS, and contributors</dd>
<dt><b>license</b></dt><dd> <a href="https://spdx.org/licenses/LGPL-2.1-only.html" target="_blank">LGPL-2.1-only</a></dd>
<dt><b>links</b></dt><dd>
(<a href='https://coq.inria.fr/'>homepage</a>)
(<a href='https://github.com/coq/coq/issues'>bug reports</a>)
(<a href='https://opam.ocaml.org/packages/coq-stdlib/coq-stdlib.8.19.2/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>Coq is a formal proof management system. It provides<br>a formal language to write mathematical definitions, executable<br>algorithms and theorems together with an environment for<br>semi-interactive development of machine-checked proofs.<br><br>Typical applications include the certification of properties of<br>programming languages (e.g. the CompCert compiler certification<br>project, or the Bedrock verified low-level programming library), the<br>formalization of mathematics (e.g. the full formalization of the<br>Feit-Thompson theorem or homotopy type theory) and teaching.<br><br>This package includes the Coq Standard Library, that is to say, the<br>set of modules usually bound to the Coq.* namespace.</dd>
</dl>
</details>
<details>
<summary><a href='http://vst.cs.princeton.edu/'>coq-vst-zlist.2.13</a>
(2.13) A list library indexed by Z type, with a powerful automatic solver</summary>
<dl>
<dt><b>authors</b></dt><dd>Qinshi Wang Andrew W. Appel</dd>
<dt><b>license</b></dt><dd> <a href="https://spdx.org/licenses/BSD-2-Clause.html" target="_blank">BSD-2-Clause</a></dd>
<dt><b>links</b></dt><dd>
(<a href='http://vst.cs.princeton.edu/'>homepage</a>)
(<a href='https://github.com/PrincetonUniversity/VST/issues'>bug reports</a>)
(<a href='https://coq.inria.fr/opam/released/packages/coq-vst-zlist/coq-vst-zlist.2.13/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd></dd>
</dl>
</details>
<details>
<summary><a href='https://coq.inria.fr/'>coqide-server.8.19.2</a>
(8.19.2) The Coq Proof Assistant, XML protocol server</summary>
<dl>
<dt><b>authors</b></dt><dd>The Coq development team, INRIA, CNRS, and contributors</dd>
<dt><b>license</b></dt><dd> <a href="https://spdx.org/licenses/LGPL-2.1-only.html" target="_blank">LGPL-2.1-only</a></dd>
<dt><b>links</b></dt><dd>
(<a href='https://coq.inria.fr/'>homepage</a>)
(<a href='https://github.com/coq/coq/issues'>bug reports</a>)
(<a href='https://opam.ocaml.org/packages/coqide-server/coqide-server.8.19.2/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>Coq is a formal proof management system. It provides<br>a formal language to write mathematical definitions, executable<br>algorithms and theorems together with an environment for<br>semi-interactive development of machine-checked proofs.<br><br>This package provides the `coqidetop` language server, an<br>implementation of Coq'apos;s [XML protocol](https://github.com/coq/coq/blob/master/dev/doc/xml-protocol.md)<br>which allows clients, such as CoqIDE, to interact with Coq in a<br>structured way.</dd>
</dl>
</details>
<details>
<summary><a href='https://github.com/ocaml-community/cppo'>cppo.1.7.0</a>
(1.7.0) Code preprocessor like cpp for OCaml</summary>
<dl>
<dt><b>authors</b></dt><dd>Martin Jambon</dd>
<dt><b>license</b></dt><dd> <a href="https://spdx.org/licenses/BSD-3-Clause.html" target="_blank">BSD-3-Clause</a></dd>
<dt><b>links</b></dt><dd>
(<a href='https://github.com/ocaml-community/cppo'>homepage</a>)
(<a href='https://github.com/ocaml-community/cppo/issues'>bug reports</a>)
(<a href='https://opam.ocaml.org/packages/cppo/cppo.1.7.0/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>Cppo is an equivalent of the C preprocessor for OCaml programs.<br>It allows the definition of simple macros and file inclusion.<br><br>Cppo is:<br><br>* more OCaml-friendly than cpp<br>* easy to learn without consulting a manual<br>* reasonably fast<br>* simple to install and to maintain</dd>
</dl>
</details>
<details>
<summary><a href='https://github.com/ocaml-dune/csexp'>csexp.1.5.2</a>
(1.5.2) Parsing and printing of S-expressions in Canonical form</summary>
<dl>
<dt><b>authors</b></dt><dd>Quentin Hocquet <lt;[email protected]>gt; - Jane Street Group, LLC <lt;[email protected]>gt; - Jeremie Dimino <lt;[email protected]>gt;</dd>
<dt><b>license</b></dt><dd> <a href="https://spdx.org/licenses/MIT.html" target="_blank">MIT</a></dd>
<dt><b>links</b></dt><dd>
(<a href='https://github.com/ocaml-dune/csexp'>homepage</a>)
(<a href='https://github.com/ocaml-dune/csexp/issues'>bug reports</a>)
(<a href='https://opam.ocaml.org/packages/csexp/csexp.1.5.2/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>This library provides minimal support for Canonical S-expressions<br>[1]. Canonical S-expressions are a binary encoding of S-expressions<br>that is super simple and well suited for communication between<br>programs.<br><br>This library only provides a few helpers for simple applications. If<br>you need more advanced support, such as parsing from more fancy input<br>sources, you should consider copying the code of this library given<br>how simple parsing S-expressions in canonical form is.<br><br>To avoid a dependency on a particular S-expression library, the only<br>module of this library is parameterised by the type of S-expressions.<br><br>[1] https://en.wikipedia.org/wiki/Canonical_S-expressions</dd>
</dl>
</details>
<details>
<summary><a href='https://github.com/ocaml-community/easy-format'>easy-format.1.3.4</a>
(1.3.4) High-level and functional interface to the Format module of the OCaml standard library</summary>
<dl>
<dt><b>authors</b></dt><dd>Martin Jambon</dd>
<dt><b>license</b></dt><dd> <a href="https://spdx.org/licenses/BSD-3-Clause.html" target="_blank">BSD-3-Clause</a></dd>
<dt><b>links</b></dt><dd>
(<a href='https://github.com/ocaml-community/easy-format'>homepage</a>)
(<a href='https://github.com/ocaml-community/easy-format/issues'>bug reports</a>)
(<a href='https://opam.ocaml.org/packages/easy-format/easy-format.1.3.4/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>This module offers a high-level and functional interface to the Format module of<br>the OCaml standard library. It is a pretty-printing facility, i.e. it takes as<br>input some code represented as a tree and formats this code into the most<br>visually satisfying result, breaking and indenting lines of code where<br>appropriate.<br><br>Input data must be first modelled and converted into a tree using 3 kinds of<br>nodes:<br><br>* atoms<br>* lists<br>* labelled nodes<br><br>Atoms represent any text that is guaranteed to be printed as-is. Lists can model<br>any sequence of items such as arrays of data or lists of definitions that are<br>labelled with something like \int main\, \let x =\ or \x:\.</dd>
</dl>
</details>
<details>
<summary><a href='https://github.com/LPCIC/elpi'>elpi.1.18.2</a>
(1.18.2) ELPI - Embeddable λProlog Interpreter</summary>
<dl>
<dt><b>authors</b></dt><dd>Claudio Sacerdoti Coen Enrico Tassi</dd>
<dt><b>license</b></dt><dd> <a href="https://spdx.org/licenses/LGPL-2.1-or-later.html" target="_blank">LGPL-2.1-or-later</a></dd>
<dt><b>links</b></dt><dd>
(<a href='https://github.com/LPCIC/elpi'>homepage</a>)
(<a href='https://github.com/LPCIC/elpi/issues'>bug reports</a>)
(<a href='https://opam.ocaml.org/packages/elpi/elpi.1.18.2/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>ELPI implements a variant of λProlog enriched with Constraint Handling Rules,<br>a programming language well suited to manipulate syntax trees with binders.<br><br>ELPI is designed to be embedded into larger applications written in OCaml as<br>an extension language. It comes with an API to drive the interpreter and <br>with an FFI for defining built-in predicates and data types, as well as<br>quotations and similar goodies that are handy to adapt the language to the host<br>application.<br><br>This package provides both a command line interpreter (elpi) and a library to<br>be linked in other applications (eg by passing -package elpi to ocamlfind).<br><br>The ELPI programming language has the following features:<br><br>- Native support for variable binding and substitution, via an Higher Order<br> Abstract Syntax (HOAS) embedding of the object language. The programmer<br> does not need to care about technical devices to handle bound variables,<br> like De Bruijn indices.<br><br>- Native support for hypothetical context. When moving under a binder one can<br> attach to the bound variable extra information that is collected when the<br> variable gets out of scope. For example when writing a type-checker the<br> programmer needs not to care about managing the typing context.<br><br>- Native support for higher order unification variables, again via HOAS.<br> Unification variables of the meta-language (λProlog) can be reused to<br> represent the unification variables of the object language. The programmer<br> does not need to care about the unification-variable assignment map and<br> cannot assign to a unification variable a term containing variables out of<br> scope, or build a circular assignment.<br><br>- Native support for syntactic constraints and their meta-level handling rules.<br> The generative semantics of Prolog can be disabled by turning a goal into a<br> syntactic constraint (suspended goal). A syntactic constraint is resumed as<br> soon as relevant variables gets assigned. Syntactic constraints can be<br> manipulated by constraint handling rules (CHR).<br><br>- Native support for backtracking. To ease implementation of search.<br><br>- The constraint store is extensible. The host application can declare<br> non-syntactic constraints and use custom constraint solvers to check their<br> consistency.<br><br>- Clauses are graftable. The user is free to extend an existing program by<br> inserting/removing clauses, both at runtime (using implication) and at<br> \compilation\ time by accumulating files.<br><br>ELPI is free software released under the terms of LGPL 2.1 or above.</dd>
</dl>
</details>
<details>
<summary><a href='https://gitlab.inria.fr/zimmerma/ecm'>gmp-ecm.7.0.3</a>
(7.0.3) GMP-ECM library for the Elliptic Curve Method (ECM) for integer factorization</summary>
<dl>
<dt><b>authors</b></dt><dd>Cyril Bouvier - David Cleaver - Pierrick Gaudry - Brian Gladman - Jim Fougeron - Laurent Fousse - Alexander Kruppa - Francois Morain - Dave Newman - Jason S. Papadopoulos - Paul Zimmermann</dd>
<dt><b>license</b></dt><dd> <a href="https://spdx.org/licenses/GPL-3.0.html" target="_blank">GPL-3.0</a> <a href="https://spdx.org/licenses/LGPL-3.0.html" target="_blank">LGPL-3.0</a></dd>
<dt><b>links</b></dt><dd>
(<a href='https://gitlab.inria.fr/zimmerma/ecm'>homepage</a>)
(<a href='https://gitlab.inria.fr/zimmerma/ecm/-/issues'>bug reports</a>)
(<a href='https://opam.ocaml.org/packages/gmp-ecm/gmp-ecm.7.0.3/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd></dd>
</dl>
</details>
<details>
<summary><a href='https://opam.ocaml.org'>host-arch-arm64.1</a>
(1) OCaml on AArch64 (64-bit)</summary>
<dl>
<dt><b>authors</b></dt><dd>David Allsopp</dd>
<dt><b>license</b></dt><dd> CC0-1.0+ - see <a href="https://opam.ocaml.org" target="_blank">homepage</a> for details</dd>
<dt><b>links</b></dt><dd>
(<a href='https://opam.ocaml.org'>homepage</a>)
(<a href='https://github.com/ocaml/opam-repository/issues'>bug reports</a>)
(<a href='https://opam.ocaml.org/packages/host-arch-arm64/host-arch-arm64.1/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>This package is installed if the underlying OCaml compiler is for 64-bit ARM.<br><br>Precisely, this means `ocamlopt -config-var architecture` equals `arm64`.<br><br>This package may be used in depends or conflicts fields of dependent packages<br>to indicate either a requirement or an incompatibility with this<br>architecture.</dd>
</dl>
</details>
<details>
<summary><a href='https://opam.ocaml.org'>host-system-other.1</a>
(1) OCaml on an unidentified system</summary>
<dl>
<dt><b>authors</b></dt><dd>David Allsopp</dd>
<dt><b>license</b></dt><dd> CC0-1.0+ - see <a href="https://opam.ocaml.org" target="_blank">homepage</a> for details</dd>
<dt><b>links</b></dt><dd>
(<a href='https://opam.ocaml.org'>homepage</a>)
(<a href='https://github.com/ocaml/opam-repository/issues'>bug reports</a>)
(<a href='https://opam.ocaml.org/packages/host-system-other/host-system-other.1/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>This package is installed if the underlying OCaml compiler'apos;s system is not<br>recognised by opam-repository'apos;s compiler packaging.<br><br>It is not expected that this package be used in depends or conflicts fields of<br>dependent packages, given that its use may be changed if the packaging is<br>subsequently enhanced to recognise the system value.</dd>
</dl>
</details>
<details>
<summary><a href='https://github.com/garrigue/lablgtk'>lablgtk3-sourceview3.3.1.5</a>
(3.1.5) OCaml interface to GTK+ gtksourceview library</summary>
<dl>
<dt><b>authors</b></dt><dd>Jacques Garrigue et al., Nagoya University</dd>
<dt><b>license</b></dt><dd> LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception - see <a href="https://github.com/garrigue/lablgtk" target="_blank">homepage</a> for details</dd>
<dt><b>links</b></dt><dd>
(<a href='https://github.com/garrigue/lablgtk'>homepage</a>)
(<a href='https://github.com/garrigue/lablgtk/issues'>bug reports</a>)
(<a href='https://opam.ocaml.org/packages/lablgtk3-sourceview3/lablgtk3-sourceview3.3.1.5/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>OCaml interface to GTK+3, gtksourceview3 library.<br><br>See https://garrigue.github.io/lablgtk/ for more information.</dd>
</dl>
</details>
<details>
<summary><a href='https://github.com/garrigue/lablgtk'>lablgtk3.3.1.5</a>
(3.1.5) OCaml interface to GTK+3</summary>
<dl>
<dt><b>authors</b></dt><dd>Jacques Garrigue et al., Nagoya University</dd>
<dt><b>license</b></dt><dd> LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception - see <a href="https://github.com/garrigue/lablgtk" target="_blank">homepage</a> for details</dd>
<dt><b>links</b></dt><dd>
(<a href='https://github.com/garrigue/lablgtk'>homepage</a>)
(<a href='https://github.com/garrigue/lablgtk/issues'>bug reports</a>)
(<a href='https://opam.ocaml.org/packages/lablgtk3/lablgtk3.3.1.5/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>OCaml interface to GTK+3<br><br>See https://garrigue.github.io/lablgtk/ for more information.</dd>
</dl>
</details>
<details>
<summary><a href='http://gitlab.inria.fr/fpottier/menhir'>menhirCST.20231231</a>
(20231231) Runtime support library for parsers generated by Menhir</summary>
<dl>
<dt><b>authors</b></dt><dd>François Pottier <lt;[email protected]>gt;</dd>
<dt><b>license</b></dt><dd> LGPL-2.0-only with OCaml-LGPL-linking-exception - see <a href="http://gitlab.inria.fr/fpottier/menhir" target="_blank">homepage</a> for details</dd>
<dt><b>links</b></dt><dd>
(<a href='http://gitlab.inria.fr/fpottier/menhir'>homepage</a>)
(<a href='https://gitlab.inria.fr/fpottier/menhir/-/issues'>bug reports</a>)
(<a href='https://opam.ocaml.org/packages/menhirCST/menhirCST.20231231/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd></dd>
</dl>
</details>
<details>
<summary><a href='http://gitlab.inria.fr/fpottier/menhir'>menhirLib.20231231</a>
(20231231) Runtime support library for parsers generated by Menhir</summary>
<dl>
<dt><b>authors</b></dt><dd>François Pottier <lt;[email protected]>gt; - Yann Régis-Gianas <lt;[email protected]>gt;</dd>
<dt><b>license</b></dt><dd> LGPL-2.0-only with OCaml-LGPL-linking-exception - see <a href="http://gitlab.inria.fr/fpottier/menhir" target="_blank">homepage</a> for details</dd>
<dt><b>links</b></dt><dd>
(<a href='http://gitlab.inria.fr/fpottier/menhir'>homepage</a>)
(<a href='https://gitlab.inria.fr/fpottier/menhir/-/issues'>bug reports</a>)
(<a href='https://opam.ocaml.org/packages/menhirLib/menhirLib.20231231/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd></dd>
</dl>
</details>
<details>
<summary><a href='http://gitlab.inria.fr/fpottier/menhir'>menhirSdk.20231231</a>
(20231231) Compile-time library for auxiliary tools related to Menhir</summary>
<dl>
<dt><b>authors</b></dt><dd>François Pottier <lt;[email protected]>gt; - Yann Régis-Gianas <lt;[email protected]>gt;</dd>
<dt><b>license</b></dt><dd> LGPL-2.0-only with OCaml-LGPL-linking-exception - see <a href="http://gitlab.inria.fr/fpottier/menhir" target="_blank">homepage</a> for details</dd>
<dt><b>links</b></dt><dd>
(<a href='http://gitlab.inria.fr/fpottier/menhir'>homepage</a>)
(<a href='https://gitlab.inria.fr/fpottier/menhir/-/issues'>bug reports</a>)
(<a href='https://opam.ocaml.org/packages/menhirSdk/menhirSdk.20231231/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd></dd>
</dl>
</details>
<details>
<summary><a href='https://github.com/ocaml/num/'>num.1.5-1</a>
(1.5-1) The legacy Num library for arbitrary-precision integer and rational arithmetic</summary>
<dl>
<dt><b>authors</b></dt><dd>Valérie Ménissier-Morain Pierre Weis Xavier Leroy</dd>
<dt><b>license</b></dt><dd> LGPL-2.1-only WITH OCaml-LGPL-linking-exception - see <a href="https://github.com/ocaml/num/" target="_blank">homepage</a> for details</dd>
<dt><b>links</b></dt><dd>
(<a href='https://github.com/ocaml/num/'>homepage</a>)
(<a href='https://github.com/ocaml/num/issues'>bug reports</a>)
(<a href='https://opam.ocaml.org/packages/num/num.1.5-1/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd></dd>
</dl>
</details>
<details>
<summary><a href='https://github.com/janestreet/ocaml-compiler-libs'>ocaml-compiler-libs.v0.12.4</a>
(v0.12.4) OCaml compiler libraries repackaged</summary>
<dl>
<dt><b>authors</b></dt><dd>Jane Street Group, LLC</dd>
<dt><b>license</b></dt><dd> <a href="https://spdx.org/licenses/MIT.html" target="_blank">MIT</a></dd>
<dt><b>links</b></dt><dd>
(<a href='https://github.com/janestreet/ocaml-compiler-libs'>homepage</a>)
(<a href='https://github.com/janestreet/ocaml-compiler-libs/issues'>bug reports</a>)
(<a href='https://opam.ocaml.org/packages/ocaml-compiler-libs/ocaml-compiler-libs.v0.12.4/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>This packages exposes the OCaml compiler libraries repackages under<br>the toplevel names Ocaml_common, Ocaml_bytecomp, Ocaml_optcomp, ...</dd>
</dl>
</details>
<details>
<summary><a href='https://opam.ocaml.org/'>ocaml-config.2</a>
(2) OCaml Switch Configuration</summary>
<dl>
<dt><b>authors</b></dt><dd>Louis Gesbert <lt;[email protected]>gt; - David Allsopp <lt;[email protected]>gt;</dd>
<dt><b>license</b></dt><dd> <a href="https://spdx.org/licenses/ISC.html" target="_blank">ISC</a></dd>
<dt><b>links</b></dt><dd>
(<a href='https://opam.ocaml.org/'>homepage</a>)
(<a href='https://github.com/ocaml/opam/issues'>bug reports</a>)
(<a href='https://opam.ocaml.org/packages/ocaml-config/ocaml-config.2/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>This package is used by the OCaml package to set-up its variables.</dd>
</dl>
</details>
<details>
<summary><a href='https://opam.ocaml.org'>ocaml-option-flambda.1</a>
(1) Set OCaml to be compiled with flambda activated</summary>
<dl>
<dt><b>authors</b></dt><dd>David Allsopp Louis Gesbert</dd>
<dt><b>license</b></dt><dd> CC0-1.0+ - see <a href="https://opam.ocaml.org" target="_blank">homepage</a> for details</dd>
<dt><b>links</b></dt><dd>
(<a href='https://opam.ocaml.org'>homepage</a>)
(<a href='https://github.com/ocaml/opam-repository/issues'>bug reports</a>)
(<a href='https://opam.ocaml.org/packages/ocaml-option-flambda/ocaml-option-flambda.1/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd></dd>
</dl>
</details>
<details>
<summary><a href='https://ocaml.org'>ocaml-variants.4.14.2+options</a>
(4.14.2+options) Official release of OCaml 4.14.2</summary>
<dl>
<dt><b>authors</b></dt><dd>Xavier Leroy - Damien Doligez - Alain Frisch - Jacques Garrigue - Didier Rémy - Jérôme Vouillon</dd>
<dt><b>license</b></dt><dd> LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception - see <a href="https://ocaml.org" target="_blank">homepage</a> for details</dd>
<dt><b>links</b></dt><dd>
(<a href='https://ocaml.org'>homepage</a>)
(<a href='https://github.com/ocaml/opam-repository/issues'>bug reports</a>)
(<a href='https://opam.ocaml.org/packages/ocaml-variants/ocaml-variants.4.14.2+options/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd></dd>
</dl>
</details>
<details>
<summary><a href='https://ocaml.org'>ocaml.4.14.2</a>
(4.14.2) The OCaml compiler (virtual package)</summary>
<dl>
<dt><b>authors</b></dt><dd>Xavier Leroy - Damien Doligez - Alain Frisch - Jacques Garrigue - Didier Rémy - Jérôme Vouillon</dd>
<dt><b>license</b></dt><dd> LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception - see <a href="https://ocaml.org" target="_blank">homepage</a> for details</dd>
<dt><b>links</b></dt><dd>
(<a href='https://ocaml.org'>homepage</a>)
(<a href='https://github.com/ocaml/opam-repository/issues'>bug reports</a>)
(<a href='https://opam.ocaml.org/packages/ocaml/ocaml.4.14.2/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd>This package requires a matching implementation of OCaml,<br>and polls it to initialise specific variables like `ocaml:native-dynlink`</dd>
</dl>
</details>
<details>
<summary><a href='https://github.com/ocaml/ocamlbuild/'>ocamlbuild.0.15.0</a>
(0.15.0) OCamlbuild is a build system with builtin rules to easily build most OCaml projects</summary>
<dl>
<dt><b>authors</b></dt><dd>Nicolas Pouillard Berke Durak</dd>
<dt><b>license</b></dt><dd> LGPL-2.0-or-later WITH OCaml-LGPL-linking-exception - see <a href="https://github.com/ocaml/ocamlbuild/" target="_blank">homepage</a> for details</dd>
<dt><b>links</b></dt><dd>
(<a href='https://github.com/ocaml/ocamlbuild/'>homepage</a>)
(<a href='https://github.com/ocaml/ocamlbuild/issues'>bug reports</a>)
(<a href='https://opam.ocaml.org/packages/ocamlbuild/ocamlbuild.0.15.0/opam'>opam package</a>)
</dd>
<dt><b>description</b></dt><dd></dd>
</dl>
</details>
<details>