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 "lwt"
16 "reparse" {(>= "3.0.0" & < "3.1.0")}
17 "reparse-lwt" {(>= "3.0.0" & < "3.1.0")}
18 "reparse-lwt-unix" {(>= "3.0.0" & < "3.1.0")}
19 "ppx_expect" {with-test}
20 "ppx_deriving" {with-test}
21 "odoc" {with-doc}
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/lemaetech/http-mutlipart-formdata.git"
38url {
39 src:
40 "https://github.com/lemaetech/http-mutlipart-formdata/archive/v2.0.0.tar.gz"
41 checksum: [
42 "md5=d7ce79e220df3a3e952e9e074aaf5e8c"
43 "sha512=3b586f4d2c938cdcf4b50a99310468a323deb55aab7f9a93e906baf34388b3ba6f646ee28597714a8288ef66c7f15d2ca39c99566e5af44f2198c5f89edae89c"
44 ]
45}