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-multipart-formdata"
10bug-reports: "https://github.com/lemaetech/http-multipart-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"
34x-commit-hash: "aa7a3d16bdf76cdc02b0d5f94be5d6a840679a4d"
35url {
36 src:
37 "https://github.com/lemaetech/http-mutlipart-formdata/releases/download/v1.0.0/http-multipart-formdata-v1.0.0.tbz"
38 checksum: [
39 "sha256=73e43c4e31560499f6998ebddd117f76b5e9cfe5edafa390f4a088e1f4fa7fa2"
40 "sha512=fc24b6238406aba0a452262ee7879e58f2fc307341dad43baae61a39e5eae0f4ce54913a06d0d26af871267827f95e7ed4281d38f6b50177fdf91b6ee6828118"
41 ]
42}