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