packages feed

http-conduit-browser-1.8: http-conduit-browser.cabal

name:            http-conduit-browser
version:         1.8
license:         BSD3
license-file:    LICENSE
author:          Myles C. Maxfield <myles.maxfield@gmail.com>
maintainer:      kudah <kudahkukarek@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.
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-conduit          >= 1.7     && < 1.9
                 , data-default
                 , cookie
                 , case-insensitive
                 , time
                 , http-types            >= 0.7
                 , conduit
                 , lifted-base
                 , transformers
                 , bytestring
                 , containers
                 , socks
                 , network               >= 2.3
                 , failure
                 , monad-control
                 , resourcet             >= 0.3    && < 0.5
    exposed-modules: Network.HTTP.Conduit.Browser
    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
                 , transformers
                 , resourcet
                 , network-conduit
                 , lifted-base
                 , http-types
                 , base64-bytestring
                 , cookie
                 , time
                 , warp
                 , wai
                 , socks
                 , network               >= 2.3
                 , failure
                 , monad-control