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.3.tar.gz" 32 checksum: [ 33 "sha256=e8b6ae889f731ec2d0d6d6ac41edf59a3773dcdfd6fe8b338c9e7614b3c18eab" 34 "md5=5d89acb6609336cf9ea84ad915778c12" 35 ] 36}