this repo has no description
1# This file is generated by dune, edit dune-project instead 2opam-version: "2.0" 3synopsis: "An OCaml library that simplifies connecting to email services" 4description: """ 5tidy_email provides a consistent interface for sending email. 6It defines types for sending messages via serveral different 7backend services (SMTP, Mailgun, etc.). Also included is a simple 8backend suitable for testing that captures messages without 9sending them. 10""" 11maintainer: ["jsthomas@protonmail.com"] 12authors: ["Joe Thomas"] 13license: "MIT" 14homepage: "https://github.com/jsthomas/tidy_email" 15bug-reports: "https://github.com/jsthomas/tidy_email/issues" 16depends: [ 17 "bisect_ppx" {>= "2.5.0" & dev} 18 "dune" {>= "2.8" & >= "2.0"} 19 "ocaml" {>= "4.11.0"} 20 "lwt" {>= "5.4.2"} 21 "odoc" {with-doc} 22] 23build: [ 24 ["dune" "subst"] {dev} 25 [ 26 "dune" 27 "build" 28 "-p" 29 name 30 "-j" 31 jobs 32 "@install" 33 "@runtest" {with-test} 34 "@doc" {with-doc} 35 ] 36] 37dev-repo: "git+https://github.com/jsthomas/tidy_email.git" 38url { 39 src: "https://github.com/jsthomas/tidy_email/archive/0.0.1.tar.gz" 40 checksum: [ 41 "md5=7a317c6ebfe5ace3b37ef88db9370e08" 42 "sha512=c3aec13f7bf58af03a9630f7479aceb300de9dc319e1d57729a175a86b1fd3e98a585ec6216918419b5ca6e187a0d9ca5c7619e7b2afacb7548c6b86d251e5c8" 43 ] 44}