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"
9doc: "https://rgrinberg.github.io/opium/"
10synopsis: "Sinatra like web toolkit based on Lwt + Cohttp"
11description: """
12Opium is a minimalistic library for quickly binding functions to http routes. Its features include (but not limited to):
13
14 Middleware system for app independent components
15 A simple router for matching urls and parsing parameters
16 Request/Response pretty printing for easier debugging
17"""
18
19build: [
20 ["dune" "subst"] {dev}
21 ["dune" "build" "-p" name "-j" jobs]
22 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
23]
24
25depends: [
26 "ocaml" {>= "4.04.1"}
27 "dune"
28 "opium_kernel" { < "0.18.0" }
29 "cohttp-lwt-unix" {>= "0.99.0"}
30 "base-unix"
31 "lwt"
32 "logs"
33 "cmdliner" {< "2.0.0"}
34 "ppx_fields_conv" {>= "v0.9.0"}
35 "ppx_sexp_conv" {>= "v0.9.0"}
36 "re" {>= "1.3.0"}
37 "magic-mime"
38 "stringext"
39 "alcotest" {with-test}
40]
41url {
42 src:
43 "https://github.com/rgrinberg/opium/releases/download/v0.17.1/opium-v0.17.1.tbz"
44 checksum: [
45 "sha256=9ea075db6b2eedf54e8d420b155b740c3aae80f1cf015ed8141bb1c97eae6ad4"
46 "md5=37bc9bffd5fad51a343b7ff202df637b"
47 ]
48}