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 "sexplib" {>= "v0.13.0" & with-test}
22]
23build: [
24 ["dune" "subst"] {dev}
25 [
26 "dune"
27 "build"
28 "-p"
29 name
30 "-j"
31 jobs
32 "@install"
33 "@runtest" {with-test}
34 "@doc" {with-doc}
35 ]
36]
37dev-repo: "git+https://github.com/oxidizing/conformist.git"
38x-commit-hash: "3cbbdd26e0159b32b041ee74f9c3a54050e5e993"
39url {
40 src:
41 "https://github.com/oxidizing/conformist/releases/download/0.4.0/conformist-0.4.0.tbz"
42 checksum: [
43 "sha256=cabb3e2c2c828d264703a9e42e0a47ee9d766ce129bca4c20eb511d812622623"
44 "sha512=b2c4a36e51cc4239cc95fe32661a6dad0b804810e62040ddc843ead1371b26a72602da5523fb1e4ba125552cdcda91ac53e057b3c224f8950db7a22eecc97094"
45 ]
46}