Skip to content
View raw
1
(lang dune 3.24)
2
3
(name org)
4
5
(generate_opam_files true)
6
7
(using menhir 2.1)
8
9
(package
10
(name org)
11
(synopsis "OCaml Org Mode parser library")
12
(description "A compact OCaml library for parsing Org Mode documents.")
13
(license GPL-3.0-only)
14
(authors "Marius PETER")
15
(maintainers "Marius PETER")
16
(homepage "https://git.mlnp.fr/ocaml-org")
17
(depends
18
(ocaml
19
(>= 5.0))
20
(menhir
21
(>= 20231231))
22
(alcotest
23
(and
24
:with-test
25
(>= 0.8.5)))))
26