this repo has no description
1opam-version: "2.0" 2synopsis: "The core of the Sihl web framework" 3description: 4 "Modules for dealing with configuration, service lifecycle, app, CLI commands, logging, random number generation and schedules." 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 "uuidm" {>= "0.9.7"} 24 "lwt_ssl" {>= "1.1.3"} 25 "caqti" {>= "1.2.1" & < "2.0.0~"} 26 "safepass" {>= "3.0"} 27 "jwto" {>= "0.3.0"} 28 "uuidm" {>= "0.9.7"} 29 "ppx_fields_conv" {>= "v0.13.0"} 30 "ppx_sexp_conv" {>= "v0.13.0"} 31 "cohttp-lwt-unix" {>= "2.5.4" & with-test} 32 "alcotest-lwt" {>= "1.2.0" & < "3.0.0" & with-test} 33 "odoc" {with-doc} 34] 35build: [ 36 ["dune" "subst"] {dev} 37 [ 38 "dune" 39 "build" 40 "-p" 41 name 42 "-j" 43 jobs 44 "@install" 45 "@runtest" {with-test} 46 "@doc" {with-doc} 47 ] 48] 49dev-repo: "git+https://github.com/oxidizing/sihl.git" 50x-commit-hash: "da140e6b902092d13e2ab6cf9a6e6ecf5b49ccb7" 51url { 52 src: 53 "https://github.com/oxidizing/sihl/releases/download/0.3.0-rc1/sihl-0.3.0-rc1.tbz" 54 checksum: [ 55 "sha256=ebfeaa62fe4498e6de03d7e6577e10c143d6148a10a6a47b98e032f3dcc70ddc" 56 "sha512=e1d80894a4a5a2d99036f6dc0fbd60686a105509fb5b743d5dfa70f4ce76a2ffeac6419bcc1b0da56a631f592497262551a44ec4a004c81809bc08d156008061" 57 ] 58}