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.1.tar.gz"
41 checksum: [
42 "md5=96b1851c7496072b5b0bf4f1a3894817"
43 "sha512=3c5402f28283db184fd56da59550c999fa08bb4db135993055a732cdf00c38aba41a5c7cab0e069bba940ccb889eb249100c4333dd4b8645aff1a998ece1cb4a"
44 ]
45}