-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhttp-encodings.cabal
44 lines (40 loc) · 1.88 KB
/
http-encodings.cabal
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
Name: http-encodings
Version: 0.9.3
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). Note that the package versions follow Semantic Versioning model (semver.org).
License: BSD3
License-file: LICENSE
Author: Andrey Chudnov
Maintainer: Andrey Chudnov <[email protected]>
Homepage: http://github.com/achudnov/http-encodings
Bug-reports: http://github.com/achudnov/http-encodings/issues
Copyright: (c) 2012-2015 Stevens Institute of Technology, (c) 2016 Andrey Chudnov
Category: Web
Build-type: Simple
Stability: Experimental
Cabal-version: >=1.10
Tested-with: GHC==7.6.3, GHC==7.4.2, GHC==7.8.2
Extra-Source-Files: CHANGELOG
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.3
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.11
, parsec == 3.*
, utf8-string == 1.*
, iconv == 0.4.*
, zlib >= 0.5 && < 0.7
, mtl == 2.*
, mime == 0.4.*
, text >= 0.9 && < 2
Default-language: Haskell2010