this repo has no description
1opam-version: "2.0" 2synopsis: "Async library for HTTP/1.1 servers" 3description: 4 "http_async implements an efficient HTTP/1.1 server. It uses the shuttle library for network IO, and provides an easy-to-use interface for writing async http services while minimal overhead on top of the user provided http handler." 5maintainer: ["Anurag Soni <anurag@sonianurag.com>"] 6authors: ["Anurag Soni <anurag@sonianurag.com>"] 7license: "MIT" 8tags: ["http-server" "http" "http1.1" "async"] 9homepage: "https://github.com/anuragsoni/http_async" 10doc: "https://anuragsoni.github.io/http_async/" 11bug-reports: "https://github.com/anuragsoni/http_async/issues" 12depends: [ 13 "dune" {>= "2.9"} 14 "ocaml" {>= "4.11.0"} 15 "shuttle" {>= "0.6.0" & < "0.9.0"} 16 "ppxlib" {>= "0.23.0"} 17 "odoc" {with-doc} 18] 19build: [ 20 ["dune" "subst"] {dev} 21 [ 22 "dune" 23 "build" 24 "-p" 25 name 26 "-j" 27 jobs 28 "--promote-install-files=false" 29 "@install" 30 "@runtest" {with-test} 31 "@doc" {with-doc} 32 ] 33 ["dune" "install" "-p" name "--create-install-files" name] 34] 35dev-repo: "git+https://github.com/anuragsoni/http_async.git" 36available: [ arch = "x86_64" | arch = "arm64" ] 37url { 38 src: 39 "https://github.com/anuragsoni/http_async/releases/download/0.1.1/http_async-0.1.1.tbz" 40 checksum: [ 41 "sha256=3ec5bfa22b4ea06012af6920a9bd13c800ad5428a38281e48838e62b4ed0de64" 42 "sha512=e5ddfbb5ce2bab67fc2e754113dcc27a84be784c6b0fdb7682b56b6c86c3e86a80361b89a14b7033e879ea2e931be99255c9262192942642fdfd62f96a1e0ed7" 43 ] 44} 45x-commit-hash: "9d3736567b0fdc0cdaa67e42895cb207619babfc"