-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathmultipart_form.opam
35 lines (34 loc) · 1 KB
/
multipart_form.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
34
35
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" {>= "0.14.0"}
"base64" {>= "3.0.0"}
"unstrctrd" {>= "0.2"}
"uutf"
"pecu" {>= "0.4"}
"prettym"
"fmt" {>= "0.8.7"}
"logs"
"ke" {>= "0.4"}
"alcotest" {with-test}
"rosetta" {with-test}
"rresult" {with-test}
"bigstringaf" {>= "0.9.0"}
]
conflicts: [ "result" {< "1.5"} ]
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"