this repo has no description
1opam-version: "2.0"
2maintainer: "rudi.grinberg@gmail.com"
3authors: ["Rudi Grinberg"]
4license: "MIT"
5
6homepage: "https://github.com/rgrinberg/opium"
7bug-reports: "https://github.com/rgrinberg/opium/issues"
8dev-repo: "git+https://github.com/rgrinberg/opium.git"
9synopsis: "Sinatra like web toolkit based on Lwt + Cohttp"
10description: """
11Opium is a minimalistic library for quickly binding functions to http routes. Its features include (but not limited to):
12
13 Middleware system for app independent components
14 A simple router for matching urls and parsing parameters
15 Request/Response pretty printing for easier debugging
16"""
17
18build: [
19 ["dune" "subst"] {dev}
20 ["dune" "build" "-p" name "-j" jobs]
21 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
22]
23
24depends: [
25 "ocaml" {>= "4.04.1"}
26 "dune"
27 "opium_kernel" { < "0.18.0" }
28 "cohttp-lwt-unix" {>= "0.99.0"}
29 "base-unix"
30 "lwt"
31 "logs"
32 "cmdliner" {< "2.0.0"}
33 "ppx_fields_conv" {>= "v0.9.0"}
34 "ppx_sexp_conv" {>= "v0.9.0"}
35 "re" {>= "1.3.0"}
36 "magic-mime"
37 "stringext"
38 "alcotest" {with-test}
39 "cow" {with-test & >= "0.10.0"}
40]
41url {
42 src:
43 "https://github.com/rgrinberg/opium/releases/download/v0.17.0/opium-v0.17.0.tbz"
44 checksum: [
45 "sha256=b276cd222d959f5337ff8487d09ba6adf3b4d0746bed690d0d8ac71faae4789f"
46 "md5=c5b1d4e885f6b7d9a0c44d59f59242fc"
47 ]
48}