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.08.0"} 14 "async" {>= "v0.15" & < "v0.16"} 15 "async_ssl" {>= "v0.15" & < "v0.16"} 16 "async_websocket" {>= "v0.15" & < "v0.16"} 17 "core" {>= "v0.15" & < "v0.16"} 18 "ppx_jane" {>= "v0.15" & < "v0.16"} 19 "base64" {>= "3.4.0"} 20 "cohttp" {>= "2.5.6" & < "6.0.0~"} 21 "cohttp-async" {>= "2.5.6" & < "3.0.0" | >= "5.0.0" & < "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.15/files/cohttp_async_websocket-v0.15.0.tar.gz" 39checksum: "sha256=29fd269020b073f5bfa825172a104ab6f528a1351f3d69448a7447c565993ab4" 40}