this repo has no description
1opam-version: "2.0"
2maintainer: "Jane Street developers"
3authors: ["Jane Street Group, LLC"]
4homepage: "https://github.com/janestreet/cohttp_async_websocket"
5bug-reports: "https://github.com/janestreet/cohttp_async_websocket/issues"
6dev-repo: "git+https://github.com/janestreet/cohttp_async_websocket.git"
7doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/cohttp_async_websocket/index.html"
8license: "MIT"
9build: [
10 ["dune" "build" "-p" name "-j" jobs]
11]
12depends: [
13 "ocaml" {>= "4.14.0"}
14 "async" {>= "v0.16" & < "v0.17"}
15 "async_ssl" {>= "v0.16" & < "v0.17"}
16 "async_websocket" {>= "v0.16" & < "v0.17"}
17 "core" {>= "v0.16" & < "v0.17"}
18 "ppx_jane" {>= "v0.16" & < "v0.17"}
19 "base64" {>= "3.4.0"}
20 "cohttp" {>= "2.5.6"}
21 "cohttp-async" {>= "2.5.7" & < "3.0.0" | >= "5.1.1" & < "6.0.0~"}
22 "dune" {>= "2.0.0"}
23 "uri-sexp" {>= "3.0.0"}
24]
25synopsis: "Websocket library for use with cohttp and async"
26description: "
27Websocket library for use with cohttp and async.
28
29Cohttp_async_websocket is a full-featured server-side
30websocket implementation, using Async as the concurrency library,
31and Cohttp for HTTP negotiation.
32
33It implements a large portion of RFC6445. The library has been
34hardened with many applications using it for several year, in
35conjunction with async-js and google-chrome.
36"
37url {
38src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/cohttp_async_websocket-v0.16.0.tar.gz"
39checksum: "sha256=786451c7d47cfe1cc54201b168b81949e2d847d562285107f596062e8d3185c9"
40}