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 ] 13depends: [ 14 "ocaml" {>= "4.06.0"} 15 "dune" {>= "1.3.0"} 16 "websocket" {= version} 17 "core" {>= "v0.13.0" & < "v0.15"} 18 "async" {>= "v0.13.0" & < "v0.15"} 19 "cohttp-async" {>= "2.5.1" & < "6.0.0~"} 20 "logs-async" {>= "1.1"} 21 "logs-async-reporter" {>= "1.0"} 22] 23synopsis: "Websocket library (Async)" 24description: """ 25The WebSocket Protocol enables two-way communication between a client 26running untrusted code in a controlled environment to a remote host 27that has opted-in to communications from that code. 28 29The security model used for this is the origin-based security model 30commonly used by web browsers. The protocol consists of an opening 31handshake followed by basic message framing, layered over TCP. 32 33The goal of this technology is to provide a mechanism for 34browser-based applications that need two-way communication with 35servers that does not rely on opening multiple HTTP connections (e.g., 36using XMLHttpRequest or <iframe>s and long polling).""" 37url { 38 src: 39 "https://github.com/vbmithr/ocaml-websocket/releases/download/2.14/websocket-2.14.tbz" 40 checksum: [ 41 "sha256=30e40d098da86fb5f6b2adbc53211503c6e0c20422c21a7b41c8ac83168ca439" 42 "sha512=ae4246f66a15cc3eb9a8fbd11bb5551fe77fb5ae93d31e8d8636c0b254e2d93ac3d5663604731a5b6ed28897cdb5677b6a96b1ce3d993b4720fd09549f1bf9ad" 43 ] 44}