packages feed

email-header-0.2.0: email-header.cabal

name:                email-header
version:             0.2.0
synopsis:            Parsing and rendering of email and MIME headers
description:         Parsing and rendering of email and MIME headers
license:             BSD3
license-file:        LICENSE
author:              Kyle Raftogianis <kylerafto@gmail.com>
maintainer:          Kyle Raftogianis <kylerafto@gmail.com>
stability:           experimental
homepage:            http://github.com/knrafto/email-header
bug-reports:         http://github.com/knrafto/email-header/issues
copyright:           Copyright (c) 2014 Kyle Raftogianis
category:            Network
build-type:          Simple
cabal-version:       >= 1.8

extra-source-files:
  .gitignore
  .travis.yml
  README.md

source-repository head
  type: git
  location: git://github.com/knrafto/email-header.git

library
  hs-source-dirs: src
  ghc-options: -Wall

  build-depends:
    attoparsec        >= 0.9   && < 1,
    base              >= 4.5   && < 5,
    base64-bytestring >= 0.1.2 && < 2,
    bytestring        >= 0.10  && < 0.11,
    case-insensitive,
    containers        >= 0.4   && < 0.6,
    text              >= 0.11  && < 2,
    text-icu          >= 0.6.3 && < 1,
    time

  exposed-modules:
    Network.Email.Charset
    Network.Email.Header.Doc
    Network.Email.Header.Layout
    Network.Email.Header.Parser
    Network.Email.Header.Pretty
    Network.Email.Header.Read
    Network.Email.Header.Render
    Network.Email.Header.Types

test-suite tests
  type: exitcode-stdio-1.0
  main-is: Tests.hs
  hs-source-dirs: tests
  ghc-options: -Wall -threaded

  build-depends:
    base,
    bytestring,
    case-insensitive,
    containers,
    email-header,
    QuickCheck,
    tasty,
    tasty-quickcheck,
    text,
    time