-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathmultipart_form-lwt.opam
33 lines (32 loc) · 981 Bytes
/
multipart_form-lwt.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
opam-version: "2.0"
synopsis: "Multipart-form: RFC2183, RFC2388 & RFC7578"
description: """\
Implementation of RFC7578 in OCaml
Returning values from forms: multipart/form-data"""
maintainer: "Romain Calascibetta <[email protected]>"
authors: "Romain Calascibetta <[email protected]>"
license: "MIT"
homepage: "https://github.com/dinosaure/multipart_form"
doc: "https://dinosaure.github.io/multipart_form/"
bug-reports: "https://github.com/dinosaure/multipart_form/issues"
depends: [
"ocaml" {>= "4.08.0"}
"dune" {>= "2.0.0"}
"angstrom"
"bigstringaf"
"ke"
"lwt" {>= "5.4.0"}
"multipart_form" {= version}
"alcotest-lwt" {with-test}
"alcotest" {with-test}
"fmt" {with-test}
"rosetta" {with-test}
"rresult" {with-test}
"unstrctrd" {with-test}
"logs" {with-test}
]
build: [
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
dev-repo: "git+https://github.com/dinosaure/multipart_form.git"