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