packages feed

http-conduit-browser-2.0.0.1: http-conduit-browser.cabal

name:            http-conduit-browser
version:         2.0.0.1
license:         BSD3
license-file:    LICENSE
author:          Myles C. Maxfield <myles.maxfield@gmail.com>
maintainer:
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.

    This package is deprecated, use <http://hackage.haskell.org/package/wreq> instead
category:        Web, Conduit
stability:       Stable
cabal-version:   >= 1.8
build-type:      Simple
extra-source-files: test/main.hs

homepage:        https://github.com/exbb2/http-conduit-browser
source-repository head
  type:     git
  location: git://github.com/exbb2/http-conduit-browser.git

library
    build-depends: base                  >= 4       && < 5
                 , http-client           >= 0.3     && < 1
                 , http-conduit          >= 2.1.5   && < 3
                 , exceptions
                 , data-default
                 , cookie
                 , time
                 , http-types            >= 0.7
                 , conduit
                 , lifted-base
                 , transformers-base
                 , transformers
                 , bytestring
                 , containers
                 , network-uri
                 , monad-control
                 , resourcet             >= 1    && < 2
    exposed-modules: Network.HTTP.Conduit.Browser
    ghc-options:     -Wall

test-suite test
    main-is: main.hs
    type: exitcode-stdio-1.0
    hs-source-dirs: test

    ghc-options:   -Wall
    build-depends:
                   http-conduit-browser
                 , base                 >= 4 && < 5
                 , HUnit
                 , hspec                >= 1.3
                 , http-client
                 , http-conduit
                 , blaze-builder
                 , bytestring
                 , text
                 , data-default
                 , conduit
                 , case-insensitive
                 , containers
                 , transformers
                 , resourcet             >= 1    && < 2
                 , lifted-base
                 , http-types            >= 0.7
                 , base64-bytestring
                 , cookie
                 , time
                 , warp
                 , wai                  >= 2 && < 3
                 , network              >= 2.3
                 , monad-control