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.t`, `option` 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 "ptime" {>= "0.8.5"}
21 "alcotest" {>= "1.2.3" & with-test}
22 "sexplib" {>= "v0.13.0" & with-test}
23]
24conflicts: [
25 "result" {< "1.5"} # uses Result.t from result implicitly through ptime
26]
27build: [
28 ["dune" "subst"] {dev}
29 [
30 "dune"
31 "build"
32 "-p"
33 name
34 "-j"
35 jobs
36 "@install"
37 "@runtest" {with-test}
38 "@doc" {with-doc}
39 ]
40]
41dev-repo: "git+https://github.com/oxidizing/conformist.git"
42url {
43 src: "https://github.com/oxidizing/conformist/archive/0.6.0.tar.gz"
44 checksum: [
45 "md5=462215fd0a1615b1f3686da1c80d2351"
46 "sha512=ad1cbe53293e4269d9be47edc5f3e1303b5707dd59715e29d0928b348661aab2d75977e88b4ec4841f2ec5931cd018d40b781911e503dcb5d3a5e3b0d3994aeb"
47 ]
48}