name:               mime-string
version:            0.5
license:            OtherLicense
license-File:       COPYING
author:             Ian Lynagh
maintainer:         guillaumh@gmail.com
synopsis:           MIME implementation for String's.
build-type:         Simple
description:
    Implementation of the MIME RFCs 2045-2049.
    Rather rough around the edges at the moment.
category:           Codec
cabal-version:      >=1.10
extra-source-files:
    BSD3
    GPL-2
    ChangeLog.md
source-repository head
  type: darcs
  location: http://hub.darcs.net/gh/mime-string

library
  hs-source-dirs:      src
  build-depends:      base < 5, mtl, network, iconv, base64-string, old-time, bytestring, random, old-locale
  default-extensions:         PatternGuards
  exposed-modules:
    Codec.Binary.EncodingQ.String
    Codec.MIME.String
    Codec.MIME.String.ContentDisposition
    Codec.MIME.String.Date
    Codec.MIME.String.EncodedWord
    Codec.MIME.String.Flatten
    Codec.MIME.String.Headers
    Codec.MIME.String.Parse
    Codec.MIME.String.Types
    Codec.MIME.String.QuotedPrintable
  Other-Modules:
    Codec.MIME.String.Internal.ABNF
    Codec.MIME.String.Internal.Utils
  GHC-Options: -Wall
  default-language:    Haskell2010