http-enumerator-0.7.2.2: http-enumerator.cabal
name: http-enumerator
version: 0.7.2.2
license: BSD3
license-file: LICENSE
author: Michael Snoyman <michael@snoyman.com>
maintainer: Michael Snoyman <michael@snoyman.com>
synopsis: HTTP client package with enumerator interface and HTTPS support.
description:
This package uses attoparsec for parsing the actual contents of the HTTP connection. It also provides higher-level functions which allow you to avoid direct usage of enumerators.
.
Note that this package has been superceded by http-conduit. If you are not using the enumerator interface of this package at all, it is highly recommended to switch to http-conduit. If you are using enumerators, please consider making the move to http-conduit anyway, as it solves some socket leaks that cannot be addressed with enumerators.
category: Web, Enumerator
stability: Stable
cabal-version: >= 1.6
build-type: Simple
homepage: http://github.com/snoyberg/http-enumerator
flag test
description: Build the test executable.
default: False
flag network-bytestring
default: False
library
build-depends: base >= 4 && < 5
, bytestring >= 0.9.1.4 && < 0.10
, transformers >= 0.2 && < 0.3
, failure >= 0.1 && < 0.2
, enumerator >= 0.4.9 && < 0.5
, attoparsec >= 0.8.0.2 && < 0.11
, attoparsec-enumerator >= 0.2.0.4 && < 0.4
, utf8-string >= 0.3.4 && < 0.4
, blaze-builder >= 0.2.1 && < 0.4
, zlib-enum >= 0.2 && < 0.3
, http-types >= 0.6 && < 0.7
, blaze-builder-enumerator >= 0.2 && < 0.3
, cprng-aes >= 0.2 && < 0.3
, tls >= 0.8.1 && < 0.9
, tls-extra >= 0.4 && < 0.5
, monad-control >= 0.2 && < 0.4
, containers >= 0.2
, certificate >= 0.7 && < 1.1
, case-insensitive >= 0.2
, base64-bytestring >= 0.1 && < 0.2
, asn1-data >= 0.5.1 && < 0.7
, data-default >= 0.3 && < 0.4
if flag(network-bytestring)
build-depends: network >= 2.2.1 && < 2.2.3
, network-bytestring >= 0.1.3 && < 0.1.4
else
build-depends: network >= 2.3 && < 2.4
exposed-modules: Network.HTTP.Enumerator
other-modules: Network.HTTP.Enumerator.HttpParser
Network.TLS.Client.Enumerator
ghc-options: -Wall
executable http-enumerator
main-is: test.hs
if flag(test)
Buildable: True
else
Buildable: False
source-repository head
type: git
location: git://github.com/snoyberg/http-enumerator.git