-
Notifications
You must be signed in to change notification settings - Fork 20
/
dune-project
59 lines (48 loc) · 1.01 KB
/
dune-project
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
(lang dune 3.0)
(name toml)
(using menhir 2.0)
(using mdx 0.2)
(license LGPL-3.0-only)
(authors
"Julien Sagot"
"Emmanuel Surleau"
"mackwic"
"Andrew Rudenko"
"orbifx"
"c-cube")
(maintainers "OCamlPro <contact@ocamlpro.com>")
(source
(github ocaml-toml/To.ml))
(homepage https://ocaml-toml.github.io/To.ml/)
(documentation https://ocaml-toml.github.io/To.ml/api/)
(generate_opam_files true)
(package
(name toml)
(synopsis "Library for TOML with a parser, a serializer and a printer")
(description
"toml is an OCaml library providing a parser, a serializer and a printer for TOML, a minimal configuration file format. Helpful getters to retrieve data as OCaml primitive types are also supplied.")
(depends
(ocaml
(>= 4.08))
(menhir
(and
:build
(>= 20180528)))
(ounit2 :with-test)
(mdx
(and
:with-test
(>= "2.1")))
(bisect_ppx
(and
:with-test
(>= "2.5")
:dev))
(ocb
(and
:with-test
(>= "0.1")
:dev))
(odoc :with-doc)
(ISO8601
(>= 0.2))))