this repo has no description
1opam-version: "2.0"
2synopsis: "The Sihl web framework"
3description: """
4
5Sihl is a batteries-included web framework. Thanks to the modular architecture, included batteries can be swapped out easily. Statically typed functional programming with OCaml makes web development fun, fast and safe. Sihl supports PostgreSQL and MariaDB.
6"""
7maintainer: ["josef@oxidizing.io"]
8authors: ["Josef Erben" "Aron Erben" "Miko Nieminen"]
9license: "MIT"
10homepage: "https://github.com/oxidizing/sihl"
11doc: "https://oxidizing.github.io/sihl/"
12bug-reports: "https://github.com/oxidizing/sihl/issues"
13depends: [
14 "dune" {>= "2.7"}
15 "ocaml" {>= "4.08.0"}
16 "conformist" {>= "0.4.0" & < "0.6.0"}
17 "tsort" {= "2.0.0"}
18 "containers" {>= "2.7"}
19 "logs" {>= "0.7.0"}
20 "fmt" {>= "0.8.8"}
21 "sexplib" {>= "v0.13.0"}
22 "yojson" {>= "1.7.0"}
23 "ppx_deriving_yojson" {>= "3.5.2"}
24 "tls" {>= "0.11.1" & < "1.0.0"}
25 "ssl" {>= "0.5.9"}
26 "uuidm" {>= "0.9.7"}
27 "lwt_ssl" {>= "1.1.3"}
28 "caqti" {>= "1.2.1" & < "2.0.0~"}
29 "safepass" {>= "3.0"}
30 "jwto" {>= "0.3.0"}
31 "uuidm" {>= "0.9.7"}
32 "ppx_fields_conv" {>= "v0.13.0"}
33 "ppx_sexp_conv" {>= "v0.13.0" & < "v0.16.0"}
34 "opium" {>= "0.20.0"}
35 "caqti" {>= "1.2.1" & < "2.0.0~"}
36 "caqti-lwt" {>= "1.2.0" & < "2.0.0~"}
37 "cohttp-lwt-unix" {>= "2.5.4" & with-test}
38 "alcotest-lwt" {>= "1.3.0" & with-test}
39 "caqti-driver-postgresql" {>= "1.2.0" & < "2.0.0~" & with-test}
40 "caqti-driver-mariadb" {>= "1.2.0" & < "2.0.0~" & with-test}
41 "odoc" {with-doc}
42]
43build: [
44 ["dune" "subst"] {dev}
45 [
46 "dune"
47 "build"
48 "-p"
49 name
50 "-j"
51 jobs
52 "@install"
53 "@runtest" {with-test}
54 "@doc" {with-doc}
55 ]
56]
57dev-repo: "git+https://github.com/oxidizing/sihl.git"
58url {
59 src: "https://github.com/oxidizing/sihl/archive/0.4.1.tar.gz"
60 checksum: [
61 "md5=b4d86577876e268da4219d29f0f3207e"
62 "sha512=e5ad0fffa52dc7dad72b84b49d375316342704e9414afe6da7a3be96cf9595cfbb5f792e9e20a7958f3fad1708f5005964daf29dc81e80923c86750441b82567"
63 ]
64}