-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathshuttle_websocket.opam
More file actions
32 lines (32 loc) · 898 Bytes
/
shuttle_websocket.opam
File metadata and controls
32 lines (32 loc) · 898 Bytes
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
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "Websocket support for HTTP/1.1 servers using Async"
description:
"Shuttle_websocket is a companion library for shuttle_http that provides a HTTP service that performs websocket negotiation for HTTP/1.1 servers."
maintainer: ["Anurag Soni <anurag@sonianurag.com>"]
authors: ["Anurag Soni"]
license: "MIT"
tags: ["http-server" "websocket"]
homepage: "https://github.com/anuragsoni/shuttle_http"
bug-reports: "https://github.com/anuragsoni/shuttle_http/issues"
depends: [
"dune" {>= "3.1"}
"shuttle_http" {= version}
"async_websocket" {>= "v0.17.0"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/anuragsoni/shuttle_http.git"