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. It comes with runtime types for primitive OCaml types such as `int`, `string`, `bool` and `float` but also `Ptime.date`, optional and custom types. Re-use business rules in validators and run it on the client side with js_of_ocaml. Arbitrary meta data can be stored in schemas which is useful to build functionality on top of conformist.
7"""
8maintainer: ["josef@oxidizing.io"]
9authors: ["Josef Erben"]
10license: "MIT"
11homepage: "https://github.com/oxidizing/conformist"
12doc: "https://oxidizing.github.io/conformist/"
13bug-reports: "https://github.com/oxidizing/conformist/issues"
14depends: [
15 "dune" {>= "2.4"}
16 "ocaml" {>= "4.08.0"}
17 "alcotest" {>= "1.2.3" & with-test}
18 "ppx_deriving" {>= "4.5" & with-test}
19 "ppx_fields_conv" {>= "v0.14.1" & with-test}
20]
21build: [
22 ["dune" "subst"] {dev}
23 [
24 "dune"
25 "build"
26 "-p"
27 name
28 "-j"
29 jobs
30 "@install"
31 "@runtest" {with-test}
32 "@doc" {with-doc}
33 ]
34]
35dev-repo: "git+https://github.com/oxidizing/conformist.git"
36x-commit-hash: "e2c8d4ee54d1c83417ff69d40d7622f7a107baa8"
37url {
38 src:
39 "https://github.com/oxidizing/conformist/releases/download/0.0.1/conformist-0.0.1.tbz"
40 checksum: [
41 "sha256=2340e7ce1c8e14a259f388a27a83675158904320f2f2546bef80d220754b75ad"
42 "sha512=59c1533658e6179a709a1bf53bd36e67229aabd530af9a3dc35aa57cfd0d9679a87c5f9f45b87491f004c6ba23f1322fe5eedbd407835bc148bd338b9cb6438b"
43 ]
44}