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" {>= "5.1.0"}
14 "async" {>= "v0.17" & < "v0.18"}
15 "async_ssl" {>= "v0.17" & < "v0.18"}
16 "async_websocket" {>= "v0.17" & < "v0.18"}
17 "core" {>= "v0.17" & < "v0.18"}
18 "ppx_jane" {>= "v0.17" & < "v0.18"}
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" {>= "3.11.0"}
23 "uri-sexp" {>= "3.0.0"}
24]
25available: arch != "arm32" & arch != "x86_32"
26synopsis: "Websocket library for use with cohttp and async"
27description: "
28Websocket library for use with cohttp and async.
29
30Cohttp_async_websocket is a full-featured server-side
31websocket implementation, using Async as the concurrency library,
32and Cohttp for HTTP negotiation.
33
34It implements a large portion of RFC6445. The library has been
35hardened with many applications using it for several year, in
36conjunction with async-js and google-chrome.
37"
38url {
39src: "https://github.com/janestreet/cohttp_async_websocket/archive/refs/tags/v0.17.0.tar.gz"
40checksum: "sha256=4cfb43afd17e67a10c901bc6f63a1fec1b12a210ca3240ddcd0ec3cc8026e030"
41}