this repo has no description
1opam-version: "2.0"
2synopsis: "Library for TOML with a parser, a serializer and a printer"
3description:
4 "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."
5maintainer: ["OCamlPro <contact@ocamlpro.com>"]
6authors: [
7 "Julien Sagot"
8 "Emmanuel Surleau"
9 "mackwic"
10 "Andrew Rudenko"
11 "orbifx"
12 "c-cube"
13]
14license: "LGPL-3.0-only"
15homepage: "https://ocaml-toml.github.io/To.ml/"
16doc: "https://ocaml-toml.github.io/To.ml/api/"
17bug-reports: "https://github.com/ocaml-toml/To.ml/issues"
18depends: [
19 "ocaml" {>= "4.07"}
20 "dune" {>= "2.7"}
21 "menhir" {build}
22 "ounit2" {with-test}
23 "bisect_ppx" {with-test & >= "2.5" & dev}
24 "ocb" {with-test & >= "0.1" & dev}
25 "odoc" {with-doc}
26 "ISO8601" {>= "0.2"}
27 "menhir" {< "20211215"}
28]
29# Workaround for https://github.com/ocaml-toml/To.ml/issues/74
30build-env: [TZ = ""]
31build: [
32 ["dune" "subst"] {dev}
33 [
34 "dune"
35 "build"
36 "-p"
37 name
38 "-j"
39 jobs
40 "@install"
41 "@runtest" {with-test}
42 "@doc" {with-doc}
43 ]
44]
45dev-repo: "git+https://github.com/ocaml-toml/To.ml.git"
46url {
47 src: "https://github.com/ocaml-toml/to.ml/archive/7.0.0.tar.gz"
48 checksum: [
49 "sha256=551185fbf299d596834eaa4e0a83385c2733c3aa4964e5326e280b1da8a5f908"
50 "sha512=afef067912ac41c29b7555554d3aed2c2f6e8f21d06733bd3e3dd6927d09ea13540fbaf5ded1cb23f0ac4bbb34b78a88ff668460ede3a73726996146431d9d27"
51 ]
52}