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.1.1"}
16 "websocket" {= version}
17 "cohttp-async" {>= "1.1.1"}
18 "core" {<"v0.13.0"}
19 "logs-async" {>= "1.0"}
20 "logs-async-reporter" {>= "1.0"}
21]
22synopsis: "Websocket library (Async)"
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.13/websocket-2.13.tbz"
39 checksum: [
40 "sha256=5923a79db1e122045e59d5a6a44b7fe58045bbad8ab3b6665750c658110aad71"
41 "md5=d0d07611c69250602c0ad9d7cddfae8e"
42 ]
43}