Skip to content

Commit eb733d3

Browse files
authored
Merge pull request ocaml#23658 from dinosaure/release-multipart_form-v0.5.0
[new release] multipart_form, multipart_form-lwt and multipart_form-cohttp-lwt (0.5.0)
2 parents 5e7f1a5 + 5434d6e commit eb733d3

File tree

3 files changed

+116
-0
lines changed
  • packages
    • multipart_form-cohttp-lwt/multipart_form-cohttp-lwt.0.5.0
    • multipart_form-lwt/multipart_form-lwt.0.5.0
    • multipart_form/multipart_form.0.5.0

3 files changed

+116
-0
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
opam-version: "2.0"
2+
synopsis: "Multipart-form for CoHTTP"
3+
maintainer: "Romain Calascibetta <[email protected]>"
4+
authors: "Romain Calascibetta <[email protected]>"
5+
license: "MIT"
6+
homepage: "https://github.com/dinosaure/multipart_form"
7+
doc: "https://dinosaure.github.io/multipart_form/"
8+
bug-reports: "https://github.com/dinosaure/multipart_form/issues"
9+
depends: [
10+
"ocaml" {>= "4.08.0"}
11+
"dune" {>= "2.0.0"}
12+
"lwt" {>= "5.4.0"}
13+
"cohttp-lwt"
14+
"multipart_form" {= version}
15+
"multipart_form-lwt" {= version}
16+
]
17+
build: [
18+
["dune" "build" "-p" name "-j" jobs]
19+
["dune" "runtest" "-p" name "-j" jobs] {with-test}
20+
]
21+
dev-repo: "git+https://github.com/dinosaure/multipart_form.git"
22+
url {
23+
src:
24+
"https://github.com/dinosaure/multipart_form/releases/download/v0.5.0/multipart_form-0.5.0.tbz"
25+
checksum: [
26+
"sha256=a8a36c1c0e2873ba1b3bd32ccdfb8fb6766e06612e52e36b3077a6a296a88a64"
27+
"sha512=f1e95b201e5474687e31bb132ca17ab9799d9957cbc91d0d7fdc160bbcfb2b6f6a77e37fba802c5a41339cb699987667e029672d58096ebfd06fd932b352bd46"
28+
]
29+
}
30+
x-commit-hash: "f88dcd04dcea0c343914cd6fba199ac717d9175d"
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
opam-version: "2.0"
2+
synopsis: "Multipart-form: RFC2183, RFC2388 & RFC7578"
3+
description: """\
4+
Implementation of RFC7578 in OCaml
5+
6+
Returning values from forms: multipart/form-data"""
7+
maintainer: "Romain Calascibetta <[email protected]>"
8+
authors: "Romain Calascibetta <[email protected]>"
9+
license: "MIT"
10+
homepage: "https://github.com/dinosaure/multipart_form"
11+
doc: "https://dinosaure.github.io/multipart_form/"
12+
bug-reports: "https://github.com/dinosaure/multipart_form/issues"
13+
depends: [
14+
"ocaml" {>= "4.08.0"}
15+
"dune" {>= "2.0.0"}
16+
"angstrom"
17+
"bigstringaf"
18+
"ke"
19+
"lwt"
20+
"multipart_form" {= version}
21+
"alcotest-lwt" {with-test}
22+
"alcotest" {with-test}
23+
"fmt" {with-test}
24+
"rosetta" {with-test}
25+
"rresult" {with-test}
26+
"unstrctrd" {with-test}
27+
"logs" {with-test}
28+
]
29+
build: [
30+
["dune" "build" "-p" name "-j" jobs]
31+
["dune" "runtest" "-p" name "-j" jobs] {with-test}
32+
]
33+
dev-repo: "git+https://github.com/dinosaure/multipart_form.git"
34+
url {
35+
src:
36+
"https://github.com/dinosaure/multipart_form/releases/download/v0.5.0/multipart_form-0.5.0.tbz"
37+
checksum: [
38+
"sha256=a8a36c1c0e2873ba1b3bd32ccdfb8fb6766e06612e52e36b3077a6a296a88a64"
39+
"sha512=f1e95b201e5474687e31bb132ca17ab9799d9957cbc91d0d7fdc160bbcfb2b6f6a77e37fba802c5a41339cb699987667e029672d58096ebfd06fd932b352bd46"
40+
]
41+
}
42+
x-commit-hash: "f88dcd04dcea0c343914cd6fba199ac717d9175d"
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
opam-version: "2.0"
2+
synopsis: "Multipart-form: RFC2183, RFC2388 & RFC7578"
3+
description: """\
4+
Implementation of RFC7578 in OCaml
5+
6+
Returning values from forms: multipart/form-data"""
7+
maintainer: "Romain Calascibetta <[email protected]>"
8+
authors: "Romain Calascibetta <[email protected]>"
9+
license: "MIT"
10+
homepage: "https://github.com/dinosaure/multipart_form"
11+
doc: "https://dinosaure.github.io/multipart_form/"
12+
bug-reports: "https://github.com/dinosaure/multipart_form/issues"
13+
depends: [
14+
"ocaml" {>= "4.08.0"}
15+
"dune" {>= "2.0.0"}
16+
"angstrom" {>= "0.14.0"}
17+
"base64" {>= "3.0.0"}
18+
"unstrctrd" {>= "0.2"}
19+
"uutf"
20+
"pecu" {>= "0.4"}
21+
"prettym"
22+
"fmt" {>= "0.8.7"}
23+
"logs"
24+
"ke" {>= "0.6"}
25+
"alcotest" {with-test}
26+
"rosetta" {with-test}
27+
"rresult" {with-test}
28+
"bigstringaf" {>= "0.9.0"}
29+
]
30+
conflicts: [ "result" {< "1.5"} ]
31+
build: [
32+
["dune" "build" "-p" name "-j" jobs]
33+
["dune" "runtest" "-p" name "-j" jobs] {with-test}
34+
]
35+
dev-repo: "git+https://github.com/dinosaure/multipart_form.git"
36+
url {
37+
src:
38+
"https://github.com/dinosaure/multipart_form/releases/download/v0.5.0/multipart_form-0.5.0.tbz"
39+
checksum: [
40+
"sha256=a8a36c1c0e2873ba1b3bd32ccdfb8fb6766e06612e52e36b3077a6a296a88a64"
41+
"sha512=f1e95b201e5474687e31bb132ca17ab9799d9957cbc91d0d7fdc160bbcfb2b6f6a77e37fba802c5a41339cb699987667e029672d58096ebfd06fd932b352bd46"
42+
]
43+
}
44+
x-commit-hash: "f88dcd04dcea0c343914cd6fba199ac717d9175d"

0 commit comments

Comments
 (0)