this repo has no description
1opam-version: "2.0" 2synopsis: "Email service implementations for Sihl" 3description: "Modules for sending emails using Lwt and SMTP or Sendgrid." 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 "letters" {>= "0.2.1"} 14 "sihl" {= version} 15 "cohttp-lwt-unix" {>= "2.5.4"} 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-rc2.tar.gz" 38 checksum: [ 39 "md5=ca63753c880ab1d043bc3653909f049f" 40 "sha512=55579ced17dc7a80e1e12e45c0ecfc673d194dbbaefc4eb77f525e9d3f6eae4e34773334014a413d7ca8f883a9e56fdd6ef47d80b4fd066230f31021738153fb" 41 ] 42}