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: """ 5Conformist allows you to define schemas to decode, validate and sanitize input data declaratively. 6It comes with runtime types for primitive OCaml types such as `int`, `string`, `bool` and `float` but also `Ptime.date`, optional and custom types. 7Re-use business rules in validators and run it on the client side with js_of_ocaml. 8Arbitrary meta data can be stored in schemas which is useful to build functionality on top of conformist. 9""" 10maintainer: ["josef@oxidizing.io"] 11authors: ["Josef Erben"] 12license: "MIT" 13homepage: "https://github.com/oxidizing/conformist" 14doc: "https://oxidizing.github.io/conformist/" 15bug-reports: "https://github.com/oxidizing/conformist/issues" 16depends: [ 17 "dune" {>= "2.4"} 18 "ocaml" {>= "4.08.0"} 19 "alcotest" {>= "1.2.3" & with-test} 20 "ppx_deriving" {>= "4.5" & with-test} 21 "ppx_fields_conv" {>= "v0.14.1" & 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: "b00a928be064cb43bbeabe817e60eaae30740a8f" 39url { 40 src: 41 "https://github.com/oxidizing/conformist/releases/download/0.0.2/conformist-0.0.2.tbz" 42 checksum: [ 43 "sha256=cb4878241d9e705153f9b3bfc0dc2be972a6e5539d0368cf9e4bfdd748c56f82" 44 "sha512=bd691be3f20869a84cf6a3dd494d2aa3ec4096e5977fbd48c9da1b344692f4343b9548c0e4e4c43eed2dc235e98e0802a87c065ff4245b84d982c7a4102fae12" 45 ] 46}