packages feed

http-conduit-2.1.2: http-conduit.cabal

name:            http-conduit
version:         2.1.2
license:         BSD3
license-file:    LICENSE
author:          Michael Snoyman <michael@snoyman.com>
maintainer:      Michael Snoyman <michael@snoyman.com>
synopsis:        HTTP client package with conduit interface and HTTPS support.
description:
    This package uses conduit for parsing the actual contents of the HTTP connection. It also provides higher-level functions which allow you to avoid directly dealing with streaming data. See <http://www.yesodweb.com/book/http-conduit> for more information.
    .
    The @Network.HTTP.Conduit.Browser@ module has been moved to <http://hackage.haskell.org/package/http-conduit-browser/>
category:        Web, Conduit
stability:       Stable
cabal-version:   >= 1.8
build-type:      Simple
homepage:        http://www.yesodweb.com/book/http-conduit
extra-source-files: test/main.hs
                  , test/CookieTest.hs
                  , multipart-example.bin
                  , nyan.gif
                  , certificate.pem
                  , key.pem

library
    build-depends: base                  >= 4       && < 5
                 , bytestring            >= 0.9.1.4
                 , transformers          >= 0.2
                 , resourcet             >= 1.1     && < 1.2
                 , conduit               >= 0.5.5   && < 1.2
                 , http-types            >= 0.7
                 , lifted-base           >= 0.1
                 , http-client           >= 0.3.2   && < 0.4
                 , http-client-tls
                 , monad-control
                 , mtl
    exposed-modules: Network.HTTP.Conduit
                     Network.HTTP.Client.Conduit
    ghc-options:     -Wall

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

    ghc-options:   -Wall
    cpp-options:   -DDEBUG
    build-depends: base >= 4 && < 5
                 , HUnit
                 , hspec >= 1.3
                 , data-default-class
                 , connection >= 0.2
                 , warp-tls
                 , time
                 , blaze-builder
                 , bytestring
                 , text
                 , transformers
                 , conduit
                 , utf8-string
                 , case-insensitive
                 , lifted-base
                 , network
                 , wai >= 2.0 && < 2.2
                 , warp >= 2.0 && < 2.2
                 , http-types
                 , cookie
                 , network-conduit >= 0.6
                 , http-client
                 , http-conduit
                 , conduit-extra
                 , streaming-commons

source-repository head
  type:     git
  location: git://github.com/snoyberg/http-client.git