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"
8license: "ISC"
9tags: [
10 "org:mirage"
11 "org:xapi-project"
12]
13build: [ "dune" "build" "-j" jobs "-p" name ]
14depends: [
15 "ocaml" {>= "4.06.0"}
16 "dune" {>= "1.3.0"}
17 "websocket" {= version}
18 "lwt_log" {>= "1.1.1"}
19 "cohttp-lwt-unix" {>= "2.5.1" & < "4.1.0"}
20]
21synopsis: "Websocket library (Lwt)"
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.
26
27The security model used for this is the origin-based security model
28commonly used by web browsers. The protocol consists of an opening
29handshake followed by basic message framing, layered over TCP.
30
31The goal of this technology is to provide a mechanism for
32browser-based applications that need two-way communication with
33servers that does not rely on opening multiple HTTP connections (e.g.,
34using XMLHttpRequest or <iframe>s and long polling)."""
35url {
36 src:
37 "https://github.com/vbmithr/ocaml-websocket/releases/download/2.14/websocket-2.14.tbz"
38 checksum: [
39 "sha256=30e40d098da86fb5f6b2adbc53211503c6e0c20422c21a7b41c8ac83168ca439"
40 "sha512=ae4246f66a15cc3eb9a8fbd11bb5551fe77fb5ae93d31e8d8636c0b254e2d93ac3d5663604731a5b6ed28897cdb5677b6a96b1ce3d993b4720fd09549f1bf9ad"
41 ]
42}