this repo has no description
1opam-version: "2.0"
2synopsis: "The core of the Sihl web framework"
3description:
4 "Deals with configuration, service lifecycle, app, CLI commands, logging and randomness."
5maintainer: ["josef@oxidizing.io"]
6authors: ["Josef Erben" "Aron Erben" "Miko Nieminen"]
7license: "MIT"
8homepage: "https://github.com/oxidizing/sihl"
9doc: "https://oxidizing.github.io/sihl/"
10bug-reports: "https://github.com/oxidizing/sihl/issues"
11depends: [
12 "dune" {>= "2.7"}
13 "ocaml" {>= "4.08.0"}
14 "conformist" {>= "0.1.0" & < "0.3.0"}
15 "tsort" {= "2.0.0"}
16 "logs" {>= "0.7.0"}
17 "fmt" {>= "0.8.8"}
18 "sexplib" {>= "v0.13.0" & < "v0.17"}
19 "yojson" {>= "1.7.0"}
20 "ppx_deriving_yojson" {>= "3.5.2"}
21 "tls" {>= "0.11.1" & < "1.0.0"}
22 "ssl" {>= "0.5.9"}
23 "lwt_ssl" {>= "1.1.3"}
24 "caqti" {>= "1.2.1" & < "2.0.0~"}
25 "safepass" {>= "3.0"}
26 "jwto" {>= "0.3.0"}
27 "ppx_fields_conv" {>= "v0.13.0"}
28 "ppx_sexp_conv" {>= "v0.13.0"}
29 "cohttp-lwt-unix" {>= "2.5.4" & with-test}
30 "alcotest-lwt" {>= "1.2.0" & < "3.0.0" & with-test}
31 "odoc" {with-doc}
32]
33build: [
34 ["dune" "subst"] {dev}
35 [
36 "dune"
37 "build"
38 "-p"
39 name
40 "-j"
41 jobs
42 "@install"
43 "@runtest" {with-test}
44 "@doc" {with-doc}
45 ]
46]
47dev-repo: "git+https://github.com/oxidizing/sihl.git"
48x-commit-hash: "f92911d6cf09616bdde0ce321bce1baf9a08bdaf"
49url {
50 src:
51 "https://github.com/oxidizing/sihl/releases/download/0.2.1/sihl-0.2.1.tbz"
52 checksum: [
53 "sha256=b47b808350dbc1776452398b34e8205eb1f37c152befa47e3547edcf2df2c5bd"
54 "sha512=38c989c8e3afdffde07bc41e121c3db2a2f054d30e78dffd31e6fff5abaac38d8a46b27d4e9e645af8373ab9c744ddb7902178026ae75df8203b9a69f22ec1b2"
55 ]
56}