this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #18350 from jerben/release-conformist-0.2.1

[new release] conformist (0.2.1)

authored by

Anil Madhavapeddy and committed by
GitHub
3a66326f 56849ed4

+46
+46
packages/conformist/conformist.0.2.1/opam
··· 1 + opam-version: "2.0" 2 + synopsis: 3 + "Conformist allows you to define schemas to decode, validate and sanitize input data declaratively" 4 + description: """ 5 + 6 + Conformist allows you to define schemas to decode, validate and sanitize input data declaratively. 7 + It comes with runtime types for primitive OCaml types such as `int`, `string`, `bool` and `float` but also `Ptime.date`, optional and custom types. 8 + Re-use business rules in validators and run it on the client side with js_of_ocaml. 9 + Arbitrary meta data can be stored in schemas which is useful to build functionality on top of conformist. 10 + """ 11 + maintainer: ["josef@oxidizing.io"] 12 + authors: ["Josef Erben"] 13 + license: "MIT" 14 + homepage: "https://github.com/oxidizing/conformist" 15 + doc: "https://oxidizing.github.io/conformist/" 16 + bug-reports: "https://github.com/oxidizing/conformist/issues" 17 + depends: [ 18 + "dune" {>= "2.4"} 19 + "ocaml" {>= "4.08.0"} 20 + "alcotest" {>= "1.2.3" & with-test} 21 + "sexplib" {>= "v0.13.0" & with-test} 22 + ] 23 + build: [ 24 + ["dune" "subst"] {pinned} 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 + ] 37 + dev-repo: "git+https://github.com/oxidizing/conformist.git" 38 + x-commit-hash: "593c2d9fb35f540f099938ed84edaf83b2e58afd" 39 + url { 40 + src: 41 + "https://github.com/oxidizing/conformist/releases/download/0.2.1/conformist-0.2.1.tbz" 42 + checksum: [ 43 + "sha256=80321b97c08f27985a678c64e24224267e420e5efa9f9c5c3a4a7da6aedc6ea8" 44 + "sha512=1154d81a8e1bc3034889ef7f1e6221ed6a83cb4f401683a4cd48ed9d3d47b6a2c3860fc147675eb5902c1e626873b44d2c1c202648b353600065fc530874af74" 45 + ] 46 + }