this repo has no description
1opam-version: "2.0"
2maintainer: "Spiros Eliopoulos <spiros@inhabitedtype.com>"
3authors: [ "Spiros Eliopoulos <spiros@inhabitedtype.com>" ]
4license: "BSD-3-clause"
5homepage: "https://github.com/inhabitedtype/httpaf"
6bug-reports: "https://github.com/inhabitedtype/httpaf/issues"
7dev-repo: "git+https://github.com/inhabitedtype/httpaf.git"
8build: [
9 ["dune" "subst"] {dev}
10 ["dune" "build" "-p" name "-j" jobs]
11 ["dune" "runtest" "-p" name] {with-test}
12]
13depends: [
14 "ocaml" {>= "4.03.0"}
15 "dune" {>= "1.5.0"}
16 "alcotest" {with-test}
17 "bigstringaf" {>= "0.4.0"}
18 "angstrom" {>= "0.14.0"}
19 "faraday" {>= "0.6.1"}
20 "result"
21]
22synopsis:
23 "A high-performance, memory-efficient, and scalable web server for OCaml"
24description: """
25http/af implements the HTTP 1.1 specification with respect to parsing,
26serialization, and connection pipelining as a state machine that is agnostic to
27the underlying IO mechanism, and is therefore portable across many platform.
28It uses the Angstrom and Faraday libraries to implement the parsing and
29serialization layers of the HTTP standard, hence the name."""
30url {
31 src: "https://github.com/inhabitedtype/httpaf/archive/0.7.0.tar.gz"
32 checksum: [
33 "sha256=821a49deb9243b432d8236113078d136de2669cbc9f6c5a80ae6fdde2e88b8e5"
34 "md5=d200222727be5adb2fb6482dd68557c3"
35 ]
36}