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 ["jbuilder" "subst" "-p" name] {dev}
10 ["jbuilder" "build" "-p" name "-j" jobs]
11 ["jbuilder" "runtest" "-p" name] {with-test}
12]
13depends: [
14 "ocaml" {>= "4.03.0"}
15 "jbuilder" {>= "1.0+beta10"}
16 "angstrom" {>= "0.7.0" & < "0.9.0"}
17 "faraday" {>= "0.5.0"}
18 "result"
19]
20synopsis:
21 "A high-performance, memory-efficient, and scalable web server for OCaml."
22description: """
23http/af implements the HTTP 1.1 specification with respect to parsing,
24serialization, and connection pipelining as a state machine that is agnostic to
25the underlying IO mechanism, and is therefore portable across many platform.
26It uses the Angstrom and Faraday libraries to implement the parsing and
27serialization layers of the HTTP standard, hence the name."""
28url {
29 src: "https://github.com/inhabitedtype/httpaf/archive/0.1.0.tar.gz"
30 checksum: [
31 "sha256=851dae82c8e375ebb2aed9e424044c92926446cd9360c7afbf2d307b9120c7d1"
32 "md5=a6d5bfaac43c6f0a72feabf3ff410cfd"
33 ]
34}