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.2.0/http_async-0.2.0.tbz" 40 checksum: [ 41 "sha256=3ba4a210833e93a50ca2e539b38d29352f7c1b892fd7b7e89af4e788fafe905f" 42 "sha512=0bf256e969a49d45765f8b0e1a06d914c2bc45c4d6f4adc28ad4d2f68f52734b3de73e890a9b5501c8679fdca30191663372a5786e693d505b1640554068af94" 43 ] 44} 45x-commit-hash: "602889e33b92a842ce7a64dcc259270f529231e3"