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/ocaml-webmachine"
6dev-repo: "git+https://github.com/inhabitedtype/ocaml-webmachine.git"
7bug-reports: "https://github.com/inhabitedtype/ocaml-webmachine/issues"
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"}
15 "calendar" {>= "2.03.2"}
16 "cohttp" {>= "0.21.0"}
17 "dispatch" {>= "0.3.0" & < "0.5.0"}
18 "jbuilder" {>= "1.0+beta10"}
19 "base-bytes"
20 "ounit" {with-test & >= "1.0.2"}
21 "re" {>= "1.3.0"}
22]
23synopsis: "A REST toolkit for OCaml"
24description: """
25OCaml webmachine is a layer on top of cohttp that implements a
26state-machine-based HTTP request processor. It's particularly
27well-suited for writing RESTful APIs. As the name suggests, this is an
28OCaml port of the webmachine project."""
29url {
30 src:
31 "https://github.com/inhabitedtype/ocaml-webmachine/archive/0.5.0.tar.gz"
32 checksum: [
33 "sha256=242c87b3e01ab2ab7e7e79b51a9d6aeba4da6cb117fd61236cf53b7716771699"
34 "md5=bb9d0571a0877764e2a7a3c1bd4b6c61"
35 ]
36}