this repo has no description
1opam-version: "2.0" 2synopsis: "Queue service implementations for Sihl" 3description: 4 "Modules for running tasks in the background on a persistent queue." 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 "sihl" {= version} 15 "tyxml-ppx" {>= "4.4.0"} 16 "alcotest-lwt" {>= "1.4.0" & with-test} 17 "caqti-driver-postgresql" {>= "1.5.1" & < "2.0.0~" & with-test} 18 "caqti-driver-mariadb" {>= "1.5.1" & < "2.0.0~" & with-test} 19 "odoc" {with-doc} 20] 21build: [ 22 ["dune" "subst"] {dev} 23 [ 24 "dune" 25 "build" 26 "-p" 27 name 28 "-j" 29 jobs 30 "@install" 31 "@runtest" {with-test} 32 "@doc" {with-doc} 33 ] 34] 35dev-repo: "git+https://github.com/oxidizing/sihl.git" 36url { 37 src: "https://github.com/oxidizing/sihl/archive/1.0.0-rc1.tar.gz" 38 checksum: [ 39 "md5=3dd7fcf3b9f0cf99c1ce0ceed278aef6" 40 "sha512=aeb289a71186b7b0b429d3869bb4eab632eec5ab403353dc13d8a18c5b04af5fda7c2a74bacf98364a8e0b1b3e843fb5a0b28a0c38652bed2e9432ee6659b53a" 41 ] 42}