Skip to content

Commit 91c11c7

Browse files
mserinberth
authored andcommitted
[new release] cohttp (5.3.1)
CHANGES: - cohttp: case-insensitive check of set-cookies (chomosuke, mirage/ocaml-cohttp#1008)
1 parent 0bca90d commit 91c11c7

File tree

1 file changed

+63
-0
lines changed
  • packages/cohttp/cohttp.5.3.1

1 file changed

+63
-0
lines changed

packages/cohttp/cohttp.5.3.1/opam

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
opam-version: "2.0"
2+
maintainer: "anil@recoil.org"
3+
authors: [
4+
"Anil Madhavapeddy"
5+
"Stefano Zacchiroli"
6+
"David Sheets"
7+
"Thomas Gazagnaire"
8+
"David Scott"
9+
"Rudi Grinberg"
10+
"Andy Ray"
11+
]
12+
synopsis: "An OCaml library for HTTP clients and servers"
13+
description: """
14+
Cohttp is an OCaml library for creating HTTP daemons. It has a portable
15+
HTTP parser, and implementations using various asynchronous programming
16+
libraries.
17+
18+
See the cohttp-async, cohttp-lwt, cohttp-lwt-unix, cohttp-lwt-jsoo and
19+
cohttp-mirage libraries for concrete implementations for particular
20+
targets.
21+
22+
You can implement other targets using the parser very easily. Look at the `IO`
23+
signature in `lib/s.mli` and implement that in the desired backend.
24+
25+
You can activate some runtime debugging by setting `COHTTP_DEBUG` to any
26+
value, and all requests and responses will be written to stderr. Further
27+
debugging of the connection layer can be obtained by setting `CONDUIT_DEBUG`
28+
to any value."""
29+
license: "ISC"
30+
tags: ["org:mirage" "org:xapi-project"]
31+
homepage: "https://github.com/mirage/ocaml-cohttp"
32+
doc: "https://mirage.github.io/ocaml-cohttp/"
33+
bug-reports: "https://github.com/mirage/ocaml-cohttp/issues"
34+
depends: [
35+
"ocaml" {>= "4.08"}
36+
"dune" {>= "2.0"}
37+
"re" {>= "1.9.0"}
38+
"uri" {>= "2.0.0"}
39+
"uri-sexp"
40+
"sexplib0"
41+
"ppx_sexp_conv" {>= "v0.13.0"}
42+
"stringext"
43+
"base64" {>= "3.1.0"}
44+
"fmt" {with-test}
45+
"jsonm" {build}
46+
"alcotest" {with-test}
47+
"crowbar" {with-test & >= "0.2"}
48+
]
49+
build: [
50+
["dune" "subst"] {dev}
51+
["dune" "build" "-p" name "-j" jobs]
52+
["dune" "runtest" "-p" name "-j" jobs] {with-test}
53+
]
54+
dev-repo: "git+https://github.com/mirage/ocaml-cohttp.git"
55+
url {
56+
src:
57+
"https://github.com/mirage/ocaml-cohttp/releases/download/5.3.1/cohttp-5.3.1.tbz"
58+
checksum: [
59+
"sha256=f5e273d3c2f29ff47bd7e16db23e1f3d6cd01a40be00208985bc434c88d4576b"
60+
"sha512=26580405fc33cd7e05b2c91732df97da9ba609d7392e5779be601aa65e34f1991d2b0ae2870ac29e57567f583dc0e13e61d3c4a74c7ac21012453acb33a37ae3"
61+
]
62+
}
63+
x-commit-hash: "0bb4e195b7ffbe2e70f5d9cd3a61973ad9593740"

0 commit comments

Comments
 (0)