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 ["dune" "subst"] {dev}
10 ["dune" "build" "-p" name "-j" jobs]
11 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
12]
13depends: [
14 "ocaml" {>= "4.03.0"}
15 "ptime" {>= "0.8.0"}
16 "cohttp" {>= "1.0.0"}
17 "dispatch" {>= "0.3.0" & < "0.5.0"}
18 "dune" {>= "1.0"}
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.
28"""
29url {
30 src:
31 "https://github.com/inhabitedtype/ocaml-webmachine/archive/0.6.2.tar.gz"
32 checksum: [
33 "sha256=d6e6567c1e177aefe6f1a62a32ff61942521866ee1579a55ffb2b7970ddc04c4"
34 "md5=e49e81e81ac0527e452aa6f6fd5c9616"
35 ]
36}