packages feed

req-1.2.0: req.cabal

name:                 req
version:              1.2.0
cabal-version:        1.18
tested-with:          GHC==7.10.3, GHC==8.0.2, GHC==8.2.2, GHC==8.4.3
license:              BSD3
license-file:         LICENSE.md
author:               Mark Karpov <markkarpov92@gmail.com>
maintainer:           Mark Karpov <markkarpov92@gmail.com>
homepage:             https://github.com/mrkkrp/req
bug-reports:          https://github.com/mrkkrp/req/issues
category:             Network, Web
synopsis:             Easy-to-use, type-safe, expandable, high-level HTTP client library
build-type:           Simple
description:          Easy-to-use, type-safe, expandable, high-level HTTP client library.
extra-doc-files:      CHANGELOG.md
                    , README.md
data-files:           httpbin-data/utf8.html
                    , httpbin-data/robots.txt

source-repository head
  type:               git
  location:           https://github.com/mrkkrp/req.git

flag dev
  description:        Turn on development settings.
  manual:             True
  default:            False

library
  build-depends:      aeson            >= 0.9    && < 1.5
                    , authenticate-oauth >= 1.5  && < 1.7
                    , base             >= 4.8    && < 5.0
                    , blaze-builder    >= 0.3    && < 0.5
                    , bytestring       >= 0.10.8 && < 0.11
                    , case-insensitive >= 0.2    && < 1.3
                    , connection       >= 0.2.2  && < 0.3
                    , data-default-class
                    , http-api-data    >= 0.2    && < 0.4
                    , http-client      >= 0.5    && < 0.6
                    , http-client-tls  >= 0.3.2  && < 0.4
                    , http-types       >= 0.8    && < 10.0
                    , monad-control    >= 1.0    && < 1.1
                    , mtl              >= 2.0    && < 3.0
                    , retry            >= 0.7    && < 0.8
                    , text             >= 0.2    && < 1.3
                    , time             >= 1.2    && < 1.9
                    , transformers     >= 0.4    && < 0.6
                    , transformers-base
  if !impl(ghc >= 8.0)
    build-depends:    semigroups   == 0.18.*
  exposed-modules:    Network.HTTP.Req
  if flag(dev)
    ghc-options:      -O0 -Wall -Werror
  else
    ghc-options:      -O2 -Wall
  if flag(dev) && impl(ghc >= 8.0)
    ghc-options:      -Wcompat
                      -Wincomplete-record-updates
                      -Wincomplete-uni-patterns
                      -Wnoncanonical-monad-instances
                      -Wnoncanonical-monadfail-instances
  default-language:   Haskell2010

test-suite pure-tests
  main-is:            Spec.hs
  other-modules:      Network.HTTP.ReqSpec
  hs-source-dirs:     pure-tests
  type:               exitcode-stdio-1.0
  build-depends:      QuickCheck       >= 2.7    && < 3.0
                    , aeson            >= 0.9    && < 1.5
                    , base             >= 4.8    && < 5.0
                    , blaze-builder    >= 0.3    && < 0.5
                    , bytestring       >= 0.10.8 && < 0.11
                    , case-insensitive >= 0.2    && < 1.3
                    , data-default-class
                    , hspec            >= 2.0    && < 3.0
                    , hspec-core       >= 2.0    && < 3.0
                    , http-client      >= 0.5    && < 0.6
                    , http-types       >= 0.8    && < 10.0
                    , mtl              >= 2.0    && < 3.0
                    , req
                    , text             >= 0.2    && < 1.3
                    , time             >= 1.2    && < 1.9
  build-tools:        hspec-discover   >= 2.0    && < 3.0
  if flag(dev)
    ghc-options:      -O0 -Wall -Werror
  else
    ghc-options:      -O2 -Wall
  default-language:   Haskell2010

test-suite httpbin-tests
  main-is:            Spec.hs
  other-modules:      Network.HTTP.ReqSpec
  hs-source-dirs:     httpbin-tests
  type:               exitcode-stdio-1.0
  build-depends:      QuickCheck       >= 2.7    && < 3.0
                    , aeson            >= 0.9    && < 1.5
                    , base             >= 4.8    && < 5.0
                    , bytestring       >= 0.10.8 && < 0.11
                    , data-default-class
                    , hspec            >= 2.0    && < 3.0
                    , http-client      >= 0.5    && < 0.6
                    , http-types       >= 0.8    && < 10.0
                    , monad-control    >= 1.0    && < 1.1
                    , mtl              >= 2.0    && < 3.0
                    , req
                    , text             >= 0.2    && < 1.3
                    , unordered-containers >= 0.2.5 && < 0.2.10
  build-tools:        hspec-discover   >= 2.0    && < 3.0
  if flag(dev)
    ghc-options:      -O0 -Wall -Werror
  else
    ghc-options:      -O2 -Wall
  default-language:   Haskell2010