forked from vbmithr/ocaml-websocket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebsocket-lwt-unix.opam
33 lines (31 loc) · 1.25 KB
/
websocket-lwt-unix.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
opam-version: "2.0"
authors: "Vincent Bernardoff <[email protected]>"
maintainer: "Vincent Bernardoff <[email protected]>"
homepage: "https://github.com/vbmithr/ocaml-websocket"
bug-reports: "https://github.com/vbmithr/ocaml-websocket/issues"
dev-repo: "git+https://github.com/vbmithr/ocaml-websocket"
doc: "https://vbmithr.github.io/ocaml-websocket/doc"
tags: [
"org:mirage"
"org:xapi-project"
]
build: [ "dune" "build" "-j" jobs "-p" name ]
depends: [
"ocaml" {>= "4.06.0"}
"dune" {>= "1.3.0"}
"websocket" {= version}
"lwt_log" {>= "1.1.1"}
"cohttp-lwt-unix" {>= "2.5.1"}
]
synopsis: "Websocket library (Lwt)"
description: """
The WebSocket Protocol enables two-way communication between a client
running untrusted code in a controlled environment to a remote host
that has opted-in to communications from that code.
The security model used for this is the origin-based security model
commonly used by web browsers. The protocol consists of an opening
handshake followed by basic message framing, layered over TCP.
The goal of this technology is to provide a mechanism for
browser-based applications that need two-way communication with
servers that does not rely on opening multiple HTTP connections (e.g.,
using XMLHttpRequest or <iframe>s and long polling)."""