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.0/http_async-0.1.0.tbz" 40 checksum: [ 41 "sha256=aeeb19254b4d8e1ada972cf88e9e0a287fb1be179cebe86408616c4a19a5a98d" 42 "sha512=35ab68ba65747c9dfc237b12a6a36df1c8a2347d1196531e7a65d399b817cdb09f03db9a13f1b9b6d2705f0a19ffde6dcd69144fb9ebae7cbdd686f4866057b1" 43 ] 44} 45x-commit-hash: "928831aac8792b49027ddf0ba254c919a1a746d4"