this repo has no description
1opam-version: "2.0" 2synopsis: "The Sihl web framework" 3description: 4 "Modules for dealing with configuration, service lifecycle, app, CLI commands, logging, random number generation, middlewares and database." 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 "containers" {>= "2.7"} 17 "logs" {>= "0.7.0"} 18 "fmt" {>= "0.8.8"} 19 "sexplib" {>= "v0.13.0"} 20 "yojson" {>= "1.7.0"} 21 "ppx_deriving_yojson" {>= "3.5.2"} 22 "tls" {>= "0.11.1" & < "1.0.0"} 23 "ssl" {>= "0.5.9"} 24 "uuidm" {>= "0.9.7"} 25 "lwt_ssl" {>= "1.1.3"} 26 "caqti" {>= "1.2.1" & < "2.0.0~"} 27 "safepass" {>= "3.0"} 28 "jwto" {>= "0.3.0"} 29 "uuidm" {>= "0.9.7"} 30 "ppx_fields_conv" {>= "v0.13.0"} 31 "ppx_sexp_conv" {>= "v0.13.0" & < "v0.16.0"} 32 "opium" {>= "0.20.0"} 33 "caqti" {>= "1.2.1" & < "2.0.0~"} 34 "caqti-lwt" {>= "1.2.0" & < "2.0.0~"} 35 "cohttp-lwt-unix" {>= "2.5.4" & with-test} 36 "alcotest-lwt" {>= "1.2.0" & with-test} 37 "odoc" {with-doc} 38] 39build: [ 40 ["dune" "subst"] {dev} 41 [ 42 "dune" 43 "build" 44 "-p" 45 name 46 "-j" 47 jobs 48 "@install" 49 "@runtest" {with-test} 50 "@doc" {with-doc} 51 ] 52] 53dev-repo: "git+https://github.com/oxidizing/sihl.git" 54url { 55 src: "https://github.com/oxidizing/sihl/archive/refs/tags/0.3.0.tar.gz" 56 checksum: [ 57 "md5=3265ccfac470edc97a524259ec98e15b" 58 "sha512=0e6b184d5077a444a0583b65e5b99ba69e798321a34bc99bcc121eb82a3555b86ce8d1c7d3fc6afdcadf87d76f2d903702e5e6252b6b06fd7c1311b712298cc9" 59 ] 60}