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 "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 "ppx_fields_conv" {>= "v0.13.0"} 29 "ppx_sexp_conv" {>= "v0.13.0"} 30 "cohttp-lwt-unix" {>= "2.5.4" & with-test} 31 "alcotest-lwt" {>= "1.2.0" & < "3.0.0" & with-test} 32 "odoc" {with-doc} 33] 34build: [ 35 ["dune" "subst"] {dev} 36 [ 37 "dune" 38 "build" 39 "-p" 40 name 41 "-j" 42 jobs 43 "@install" 44 "@runtest" {with-test} 45 "@doc" {with-doc} 46 ] 47] 48dev-repo: "git+https://github.com/oxidizing/sihl.git" 49x-commit-hash: "57e1a542fae708251f08da84b85cdb30b498c96a" 50url { 51 src: 52 "https://github.com/oxidizing/sihl/releases/download/0.2.2/sihl-0.2.2.tbz" 53 checksum: [ 54 "sha256=cfdbfc4b5b122d5be73480dc6050ea19f970c918d19ecfde1fe1f3b152154d28" 55 "sha512=2bcb39b1e7e98892d65ded542b143259156671106e7a30ad5211c22ec54b87047320c2cf6c115db1931a563ff8204e9f420cf3edfc1559d4c9ce53b0ef40e529" 56 ] 57}