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