this repo has no description
1opam-version: "2.0" 2synopsis: "Http multipart/formdata parser" 3description: 4 "OCaml implementation of RFC 7578 (Returning Values from Forms: multipart/form-data)- https://tools.ietf.org/html/rfc7578" 5maintainer: ["Bikal Lem"] 6authors: ["Bikal Lem, <gbikal@gmail.com>"] 7license: "MPL-2.0" 8tags: ["http" "multipart" "formadata" "form" "web"] 9homepage: "https://github.com/lemaetech/http-mutlipart-formdata" 10bug-reports: "https://github.com/lemaetech/http-mutlipart-formdata/issues" 11depends: [ 12 "dune" {>= "2.7"} 13 "ocaml" {>= "4.10.0"} 14 "fmt" {>= "0.8.9"} 15 "reparse" {<= "2.0.0"} 16 "alcotest" {with-test} 17 "odoc" {with-doc} 18] 19build: [ 20 ["dune" "subst"] {dev} 21 [ 22 "dune" 23 "build" 24 "-p" 25 name 26 "-j" 27 jobs 28 "@install" 29 "@runtest" {with-test} 30 "@doc" {with-doc} 31 ] 32] 33dev-repo: "git+https://github.com/lemaetech/http-mutlipart-formdata.git" 34url { 35 src: 36 "https://github.com/lemaetech/http-multipart-formdata/archive/v1.0.1.tar.gz" 37 checksum: [ 38 "md5=c7d373e4fb487e0834920ec630ad5015" 39 "sha512=7470e1deef694e19ce8bdb93006dee256206f145db54fc8b66ce81c6a4c7b664fadbde8e44d300000fc005a10a08e32996beec9bbdd9eb684a85c62b8fd9573a" 40 ] 41}