summaryrefslogtreecommitdiffstats
path: root/mime.cabal
blob: 7c3380c24568fa08dee440f5ca03b02529b5945d (plain)
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
name:               mime
version:            0.3.0
synopsis:           Working with MIME types.
description:        Working with MIME types.
category:           Codec
license:            BSD3
license-file:       LICENSE
author:             Galois Inc.
maintainer:         sof@galois.com
Copyright:          (c) 2006-2008 Galois Inc.
cabal-version:      >= 1.2.0
build-type:         Simple

flag split-base

library
  if flag(split-base)
    build-depends:   base >= 3
  else
    build-depends:   base < 3

  exposed-modules: Codec.MIME.Type
                   Codec.MIME.Parse
                   Codec.MIME.Utils
                   Codec.MIME.Base64
                   Codec.MIME.Decode
                   Codec.MIME.QuotedPrintable
  ghc-options:     -Wall -O2