name: servant-client version: 0.7.1 synopsis: automatical derivation of querying functions for servant webservices description: This library lets you derive automatically Haskell functions that let you query each endpoint of a webservice. . See . . license: BSD3 license-file: LICENSE author: Servant Contributors maintainer: haskell-servant-maintainers@googlegroups.com copyright: 2014-2016 Zalora South East Asia Pte Ltd, Servant Contributors category: Web build-type: Simple cabal-version: >=1.10 tested-with: GHC >= 7.8 homepage: http://haskell-servant.readthedocs.org/ Bug-reports: http://github.com/haskell-servant/servant/issues extra-source-files: include/*.h CHANGELOG.md README.md source-repository head type: git location: http://github.com/haskell-servant/servant.git library exposed-modules: Servant.Client Servant.Client.Experimental.Auth Servant.Common.BaseUrl Servant.Common.BasicAuth Servant.Common.Req other-modules: Servant.Client.PerformRequest Servant.Client.PerformRequest.Base if impl(ghcjs) other-modules: Servant.Client.PerformRequest.GHCJS else other-modules: Servant.Client.PerformRequest.GHC build-depends: base >=4.7 && <5 , aeson , attoparsec , base64-bytestring , bytestring , case-insensitive , exceptions , http-api-data >= 0.1 && < 0.3 , http-client <0.5 , http-client-tls , http-media , http-types , network-uri >= 2.6 , safe , servant == 0.7.* , string-conversions , text , transformers , transformers-compat if impl(ghcjs) build-depends: ghcjs-base , ghcjs-prim hs-source-dirs: src default-language: Haskell2010 ghc-options: -Wall if impl(ghc >= 8.0) ghc-options: -Wno-redundant-constraints include-dirs: include test-suite spec type: exitcode-stdio-1.0 ghc-options: -Wall -fno-warn-name-shadowing default-language: Haskell2010 hs-source-dirs: test, src main-is: Spec.hs other-modules: Servant.ClientSpec , Servant.Client.PerformRequest.GHCJSSpec , Servant.Client.TestServer , Servant.Client.TestServer.Types , Servant.Common.BaseUrl , Servant.Common.BaseUrlSpec , Spec if impl(ghcjs) other-modules: Servant.Client.TestServer.GHCJS else other-modules: Servant.Client.TestServer.GHC build-depends: base == 4.* , base-compat , transformers , transformers-compat , aeson , base64-bytestring , bytestring , deepseq , hspec >= 2.2.1 && < 2.3 , http-client , http-media , http-types , HUnit , network >= 2.6 , QuickCheck >= 2.7 , servant == 0.7.* , servant-server == 0.7.* , text , wai , warp , mockery , safe , process , http-api-data , network-uri , exceptions , string-conversions if impl(ghcjs) build-depends: ghcjs-base , ghcjs-prim , case-insensitive include-dirs: include