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