this repo has no description
1opam-version: "2.0" 2synopsis: "A modular functional web framework" 3description: "Build web apps fast with long-term maintainability in mind." 4maintainer: ["josef@oxidizing.io"] 5authors: ["Josef Erben" "Aron Erben" "Miko Nieminen"] 6license: "MIT" 7homepage: "https://github.com/oxidizing/sihl" 8doc: "https://oxidizing.github.io/sihl/" 9bug-reports: "https://github.com/oxidizing/sihl/issues" 10depends: [ 11 "dune" {>= "2.7"} 12 "ocaml" {>= "4.08.0"} 13 "containers" {>= "2.7"} 14 "sihl-core" {= version} 15 "sihl-type" {= version} 16 "sihl-contract" {= version} 17 "sihl-persistence" {= version} 18 "sihl-web" {= version} 19 "sihl-user" {= version} 20 "sihl-queue" {= version} 21 "sihl-storage" {= version} 22 "sihl-email" {= version} 23 "alcotest-lwt" {>= "1.2.0" & < "3.0.0" & with-test} 24 "cohttp-lwt-unix" {>= "2.5.1"& with-test} 25 "odoc" {with-doc} 26] 27build: [ 28 ["dune" "subst"] {dev} 29 [ 30 "dune" 31 "build" 32 "-p" 33 name 34 "-j" 35 jobs 36 "@install" 37 "@runtest" {with-test} 38 "@doc" {with-doc} 39 ] 40] 41dev-repo: "git+https://github.com/oxidizing/sihl.git" 42x-commit-hash: "57e1a542fae708251f08da84b85cdb30b498c96a" 43url { 44 src: 45 "https://github.com/oxidizing/sihl/releases/download/0.2.2/sihl-0.2.2.tbz" 46 checksum: [ 47 "sha256=cfdbfc4b5b122d5be73480dc6050ea19f970c918d19ecfde1fe1f3b152154d28" 48 "sha512=2bcb39b1e7e98892d65ded542b143259156671106e7a30ad5211c22ec54b87047320c2cf6c115db1931a563ff8204e9f420cf3edfc1559d4c9ce53b0ef40e529" 49 ] 50}