this repo has no description
1opam-version: "2.0"
2synopsis: "OCaml web framework"
3description:
4 "Opium is a web framework for OCaml that provides everything you need to build safe, fast and extensible web applications."
5maintainer: ["Rudi Grinberg <me@rgrinberg.com>"]
6authors: ["Rudi Grinberg" "Anurag Soni" "Thibaut Mattio"]
7license: "MIT"
8homepage: "https://github.com/rgrinberg/opium"
9doc: "https://rgrinberg.github.io/opium/"
10bug-reports: "https://github.com/rgrinberg/opium/issues"
11depends: [
12 "dune" {>= "2.0"}
13 "ocaml" {>= "4.08"}
14 "rock" {= version}
15 "lwt" {>= "5.3.0"}
16 "httpaf-lwt-unix"
17 "logs"
18 "fmt"
19 "mtime" {>= "1.0.0"}
20 "cmdliner" {< "2.0.0"}
21 "ptime"
22 "magic-mime"
23 "yojson" {>= "1.6.0"}
24 "tyxml" {>= "4.3.0"}
25 "mirage-crypto" {< "1.0.0"}
26 "base64" {>= "3.1.0"}
27 "astring"
28 "re"
29 "uri" {>= "2.2.0"}
30 "multipart-form-data" {>= "0.3.0"}
31 "alcotest" {with-test}
32 "alcotest-lwt" {with-test}
33]
34conflicts: [
35 "result" {< "1.5"} # used implicitly through lwt but uses Result.to_option
36]
37build: [
38 ["dune" "subst"] {dev}
39 [
40 "dune"
41 "build"
42 "-p"
43 name
44 "-j"
45 jobs
46 "@install"
47 "@doc" {with-doc}
48 ]
49]
50dev-repo: "git+https://github.com/rgrinberg/opium.git"
51x-commit-hash: "980105d5925a742fbf7e46ba68acf8e1c43f6ea2"
52url {
53 src:
54 "https://github.com/rgrinberg/opium/releases/download/0.19.0/opium-testing-0.19.0.tbz"
55 checksum: [
56 "sha256=483f6c60c5e31c2b9fc836a9da14a8693a38b725aa164732bdb2be71fe5754d5"
57 "sha512=b19588173126bc8bd5823f1a6e94a1c3c2ce1abcf1defb3ff8ce0a613e22492160feaeb4e22d01044cac409077b863d1ebd1445e103f6602f45e56f51bb567a0"
58 ]
59}