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" 7 8tags: [ 9 "org:mirage" 10 "org:xapi-project" 11] 12build: [ "jbuilder" "build" "-j" jobs "-p" name "@install" ] 13depends: [ 14 "ocaml" {>= "4.02.0"} 15 "jbuilder" {>= "1.0+beta11"} 16 "base64" {>= "2.2.0" & < "3.0.0"} 17 "cohttp" {>= "0.99.0"} 18 "ocplib-endian" {>= "1.0"} 19 "astring" 20] 21synopsis: "Websocket library" 22description: """ 23The WebSocket Protocol enables two-way communication between a client 24running untrusted code in a controlled environment to a remote host 25that has opted-in to communications from that code. The security 26model used for this is the origin-based security model commonly used 27by web browsers. The protocol consists of an opening handshake 28followed by basic message framing, layered over TCP. The goal of this 29technology is to provide a mechanism for browser-based applications 30that need two-way communication with servers that does not rely on 31opening multiple HTTP connections (e.g., using XMLHttpRequest or 32<iframe>s and long polling).""" 33url { 34 src: "https://github.com/vbmithr/ocaml-websocket/archive/2.10.tar.gz" 35 checksum: [ 36 "sha256=cfebdc612fcd5ab8b24d1116211f6cf4ed13804f6c5ed8ad06cc33c1cda5aa4b" 37 "md5=604b812b1da86680f737f50e99ed9cf6" 38 ] 39}