this repo has no description
1opam-version: "2.0" 2authors: "Vincent Bernardoff <vb@luminar.eu.org>" 3maintainer: "Vincent Bernardoff <vb@luminar.eu.org>" 4homepage: "https://github.com/vbmithr/ocaml-websocket" 5bug-reports: "https://github.com/vbmithr/ocaml-websocket/issues" 6dev-repo: "git+https://github.com/vbmithr/ocaml-websocket" 7doc: "https://vbmithr.github.io/ocaml-websocket/doc" 8tags: [ 9 "org:mirage" 10 "org:xapi-project" 11] 12build: [ "dune" "build" "-j" jobs "-p" name "@install" ] 13depends: [ 14 "dune" {>= "1.1.1"} 15 "websocket" {= "2.12"} 16 "cohttp-async" {>= "1.1.1"} 17 "core" {<"v0.13.0"} 18] 19synopsis: "Websocket library (Async)" 20description: """ 21The WebSocket Protocol enables two-way communication between a client 22running untrusted code in a controlled environment to a remote host 23that has opted-in to communications from that code. 24 25The security model used for this is the origin-based security model 26commonly used by web browsers. The protocol consists of an opening 27handshake followed by basic message framing, layered over TCP. 28 29The goal of this technology is to provide a mechanism for 30browser-based applications that need two-way communication with 31servers that does not rely on opening multiple HTTP connections (e.g., 32using XMLHttpRequest or <iframe>s and long polling).""" 33url { 34 src: 35 "https://github.com/vbmithr/ocaml-websocket/releases/download/2.12/websocket-2.12.tbz" 36 checksum: [ 37 "sha256=6f85160066ef257eba1bddb424f120895a9367681e51ec986c5e6efe5414e8b9" 38 "md5=d3fe4222ea4142142c5e097c96fc6ef7" 39 ] 40}