Name:                http-encodings
Version:             0.9
Synopsis:            A library for encoding and decoding bodies of HTTP messages
Description: A library for encoding and decoding bodies of HTTP messages, designed to work with the HTTP and http-server libraries. No heuristic encoding detection at this time. WANTED: a library implementing the Unix "compress" command encoding/decoding (or the LZW algorithm).

License:             BSD3
License-file:        LICENSE
Author:              Andrey Chudnov
Maintainer:          Andrey Chudnov <oss@chudnov.com>
Homepage:            http://github.com/achudnov/http-encodings
Bug-reports:         http://github.com/achudnov/http-encodings/issues
Copyright:           (c) 2012-2013 Stevens Institute of Technology
Category:            Web
Build-type:          Simple
Stability:           Experimental
Cabal-version:       >=1.10

source-repository head
   type: git
   location: git://github.com/achudnov/http-encodings.git

source-repository this
   type: git
   location: git://github.com/achudnov/http-encodings.git
   tag: 0.9

Library
  Exposed-modules:     Network.HTTP.Encoding, 
                       Network.HTTP.Encoding.Character, 
                       Network.HTTP.Encoding.Content,
                       Network.HTTP.Encoding.Error  
  Build-depends: base        == 4.*
               , HTTP        == 4000.*
               , bytestring  >= 0.9 && < 0.10
               , parsec      == 3.*
               , utf8-string == 0.3.*
               , iconv       == 0.4.*
               , zlib        == 0.5.*
               , mtl         == 2.*
               , mime        == 0.3.*
  Default-language: Haskell2010