this repo has no description
1opam-version: "2.0" 2synopsis: "Websocket support for HTTP/1.1 servers using Async" 3description: 4 "Shuttle_websocket is a companion library for shuttle_http that provides a HTTP service that performs websocket negotiation for HTTP/1.1 servers." 5maintainer: "Anurag Soni <anurag@sonianurag.com>" 6authors: "Anurag Soni" 7license: "MIT" 8tags: ["http-server" "websocket"] 9homepage: "https://sr.ht/~soni/shuttle_http" 10bug-reports: "https://todo.sr.ht/~soni/shuttle_http" 11depends: [ 12 "dune" {>= "3.1"} 13 "shuttle_http" {= version} 14 "async_websocket" 15 "odoc" {with-doc} 16] 17build: [ 18 ["dune" "subst"] {dev} 19 [ 20 "dune" 21 "build" 22 "-p" 23 name 24 "-j" 25 jobs 26 "@install" 27 "@runtest" {with-test} 28 "@doc" {with-doc} 29 ] 30] 31dev-repo: "git+https://git.sr.ht/~soni/shuttle_http" 32url { 33 src: "https://git.sr.ht/~soni/shuttle_http/archive/0.11.0.tar.gz" 34 checksum: [ 35 "md5=c18e89676a71564229afaf9d40a64ebb" 36 "sha512=12d9dc7f6ab96147c14469bb48f56b5f528633d7925033aea99b303976868cc762919228057511a8d658c76496636c69f9e283c91d76eadbb7bd5443c492d939" 37 ] 38}