this repo has no description
1opam-version: "2.0"
2maintainer: "support@toml.epimeros.org"
3authors: [
4 "Julien Sagot"
5 "Emmanuel Surleau"
6 "mackwic"
7 "Andrew Rudenko"
8 "orbifx"
9 "c-cube"
10]
11homepage: "http://mackwic.github.io/To.ml/"
12bug-reports: "https://github.com/mackwic/To.ml/issues"
13dev-repo: "git+https://github.com/mackwic/To.ml.git"
14build: [
15 ["dune" "build" "-p" name "-j" jobs]
16]
17license: "LGPL-3.0-only"
18depends: [
19 "ocaml" {>= "4.02.0"}
20 "dune" {>= "1.0"}
21 "menhir" {build}
22 "ounit" {with-test}
23 "bisect" {with-test}
24 "odoc" {with-doc}
25 "ISO8601" {>= "0.2.0"}
26 "menhir" {< "20211215"}
27]
28synopsis: "TOML parser."
29description: """
30The Toml library provides a parser and serializer for Tom's Obvious Minimal
31Language v0.4.0, a minimal configuration file format. Helpful getters to
32retrieve data as OCaml primitive types are also supplied."""
33url {
34 src: "https://github.com/ocaml-toml/to.ml/archive/v5.0.0.tar.gz"
35 checksum: [
36 "sha256=f36ed18e008905a7fb4da87b589485aef77ad83fb3a470335c5d67891b36d73a"
37 "md5=e68d21fdbb6b255909305f8707a54951"
38 ]
39}