packages feed

postie-0.1.0.0: postie.cabal

name: postie
version: 0.1.0.0
cabal-version: >=1.10
build-type: Simple
license: BSD3
license-file: LICENSE
maintainer: alex.biehl@gmail.com
author: Alex Biehl
data-dir: ""
description:
  `postie` is a little smtp server library for receiving emails. It is currently
  in a very early stage and not yet standard compatible although the standard
  use cases, e.g. receiving emails already work.

library
    build-depends: base >=4 && <=5, network >=2.4.1.2, bytestring >=0.10.0.2,
                   tls >=1.2.2, pipes >=4.1.0,
                   pipes-parse >=3.0.1, attoparsec >=0.10.4.0, transformers >=0.3.0.0,
                   mtl >=2.1.2, cprng-aes >=0.5.2,
                   data-default-class >=0.0.1
    exposed-modules: Web.Postie Web.Postie.Types Web.Postie.Settings
    exposed: True
    buildable: True
    default-language: Haskell2010
    default-extensions: Rank2Types OverloadedStrings DeriveDataTypeable
    hs-source-dirs: src
    other-modules: Web.Postie.Connection Web.Postie.Session
                   Web.Postie.Protocol Web.Postie.Pipes Web.Postie.Address
    ghc-options: -O2 -Wall

executable simple
    build-depends: base -any, bytestring >=0.10.0.2, tls >=1.2.2,
                   data-default-class >=0.0.1, pipes >=4.1.0,
                   pipes-bytestring >=2.0.1, postie -any
    main-is: Simple.hs
    buildable: True
    default-language: Haskell2010
    hs-source-dirs: examples