1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
Cabal-version: >=1.10
Name: mime-mail
Version: 0.5.1
Synopsis: Compose MIME email messages.
description: Hackage documentation generation is not reliable. For up to date documentation, please see: <http://www.stackage.org/package/mime-mail>.
Homepage: http://github.com/snoyberg/mime-mail
License: MIT
License-file: LICENSE
Author: Michael Snoyman <michael@snoyman.com>
Maintainer: Michael Snoyman <michael@snoyman.com>, Marek Suchánek <marek.suchanek@fit.cvut.cz>
Category: Email
Build-type: Simple
extra-source-files: README.md
ChangeLog.md
Library
default-language: Haskell2010
Exposed-modules: Network.Mail.Mime
Build-depends: base >= 4.9 && < 5
, base64-bytestring >= 0.1
, process >= 1.0
, random >= 1.0
, blaze-builder >= 0.2.1 && < 0.5
, bytestring >= 0.9.1
, text >= 0.7
, filepath >= 1.2
test-suite tests
default-language: Haskell2010
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules: Network.Mail.MimeSpec
hs-source-dirs: test
build-depends: base
, hspec >= 1.3
, mime-mail
, blaze-builder
, bytestring
, text
ghc-options: -Wall
source-repository head
type: git
location: git://github.com/snoyberg/mime-mail.git
|