name: http-conduit-browser
version: 1.6.2
license: BSD3
license-file: LICENSE
author: Myles C. Maxfield <myles.maxfield@gmail.com>
maintainer: Myles C. Maxfield <myles.maxfield@gmail.com>
synopsis: Browser interface to the http-conduit package
description:
This package creates a monad representing things that browsers do,
letting you elegantly describe a browsing session. This package wraps
the http-conduit package by Michael Snoyman. Note that the module will
be renamed to Network.HTTP.Conduit.Browser a month or so after release.
This is to give users migration time without name clashes.
category: Web, Conduit
stability: Stable
cabal-version: >= 1.8
build-type: Simple
homepage: https://github.com/litherum/http-conduit-browser
extra-source-files: test/main.hs
flag new-http-conduit
default: True
library
build-depends: base >= 4 && < 5
, data-default
, cookie
, utf8-string
, case-insensitive
, time
, http-types
, conduit
, lifted-base
, mtl
, bytestring
, containers
, socks
if flag(new-http-conduit)
build-depends: http-conduit >= 1.7 && < 1.8
exposed-modules: Network.HTTP.Conduit.Browser
else
build-depends: http-conduit >= 1.6.1 && < 1.7
exposed-modules: Network.HTTP.Conduit.Browser2
ghc-options: -Wall
test-suite test
main-is: test/main.hs
type: exitcode-stdio-1.0
hs-source-dirs: ., test
ghc-options: -Wall
build-depends: base >= 4 && < 5
, HUnit
, hspec >= 1.3
, http-conduit
, blaze-builder
, bytestring
, text
, data-default
, conduit
, case-insensitive
, containers
, utf8-string
, transformers
, resourcet
, network-conduit
, lifted-base
, http-types
, base64-bytestring
, cookie
, time
, mtl
, warp
, wai
, socks
source-repository head
type: git
location: git://github.com/litherum/http-conduit-browser.git