this repo has no description
1opam-version: "2.0"
2synopsis: "Async library for HTTP/1.1 servers and clients"
3description:
4 "Shuttle_http is a low level library for implementing HTTP/1.1 web services and clients in OCaml."
5maintainer: "Anurag Soni <anurag@sonianurag.com>"
6authors: "Anurag Soni"
7license: "MIT"
8tags: ["http-server" "http-client" "http" "http1.1" "async"]
9homepage: "https://sr.ht/~soni/shuttle_http"
10bug-reports: "https://todo.sr.ht/~soni/shuttle_http"
11depends: [
12 "dune" {>= "3.1"}
13 "async" {>= "v0.16.0" & < "v0.17.0"}
14 "async_ssl" {>= "v0.16.0"}
15 "async_websocket" {>= "v0.16.0"}
16 "core" {>= "v0.16.0"}
17 "jane_rope" {>= "v0.16.0"}
18 "ocaml" {>= "4.14.0"}
19 "ppx_jane" {>= "v0.16.0"}
20 "re2" {>= "v0.16.0"}
21 "core_unix" {with-test}
22 "odoc" {with-doc}
23]
24available: arch = "x86_64" | arch = "arm64"
25build: [
26 ["dune" "subst"] {dev}
27 [
28 "dune"
29 "build"
30 "-p"
31 name
32 "-j"
33 jobs
34 "@install"
35 "@runtest" {with-test & os != "macos"}
36 "@doc" {with-doc}
37 ]
38]
39dev-repo: "git+https://git.sr.ht/~soni/shuttle_http"
40url {
41 src: "https://git.sr.ht/~soni/shuttle_http/archive/0.11.0.tar.gz"
42 checksum: [
43 "md5=c18e89676a71564229afaf9d40a64ebb"
44 "sha512=12d9dc7f6ab96147c14469bb48f56b5f528633d7925033aea99b303976868cc762919228057511a8d658c76496636c69f9e283c91d76eadbb7bd5443c492d939"
45 ]
46}