this repo has no description
1opam-version: "2.0"
2synopsis:
3 "Conformist allows you to define schemas to decode, validate and sanitize input data declaratively"
4description: """
5
6Conformist allows you to define schemas to decode, validate and sanitize input data declaratively.
7It comes with runtime types for primitive OCaml types such as `int`, `string`, `bool` and `float` but also `Ptime.date`, optional and custom types.
8Re-use business rules in validators and run it on the client side with js_of_ocaml.
9Arbitrary meta data can be stored in schemas which is useful to build functionality on top of conformist.
10"""
11maintainer: ["josef@oxidizing.io"]
12authors: ["Josef Erben"]
13license: "MIT"
14homepage: "https://github.com/oxidizing/conformist"
15doc: "https://oxidizing.github.io/conformist/"
16bug-reports: "https://github.com/oxidizing/conformist/issues"
17depends: [
18 "dune" {>= "2.4"}
19 "ocaml" {>= "4.08.0"}
20 "alcotest" {>= "1.2.3" & with-test}
21 "ppx_deriving" {>= "4.5" & with-test}
22 "ppx_fields_conv" {>= "v0.14.1" & with-test}
23]
24build: [
25 ["dune" "subst"] {dev}
26 [
27 "dune"
28 "build"
29 "-p"
30 name
31 "-j"
32 jobs
33 "@install"
34 "@runtest" {with-test}
35 "@doc" {with-doc}
36 ]
37]
38dev-repo: "git+https://github.com/oxidizing/conformist.git"
39url {
40 src: "https://github.com/oxidizing/conformist/archive/0.2.0.tar.gz"
41 checksum: [
42 "md5=7b09116430251ed48c7d21ac878cdcc3"
43 "sha512=8f562e8b54631bdcaab803348fa491b77cef95dff82ea0a01d9d0b88d9346261103123102aacd4fb1d7ab021b4f67ee602120239e08d09507a4247ecb5bce509"
44 ]
45}