servant/servant-client/servant-client.cabal

98 lines
3.1 KiB
Plaintext
Raw Normal View History

name: servant-client
version: 0.9.2.0
synopsis: automatical derivation of querying functions for servant webservices
2014-12-08 11:10:51 +01:00
description:
This library lets you derive automatically Haskell functions that
let you query each endpoint of a <http://hackage.haskell.org/package/servant servant> webservice.
.
2016-04-21 12:22:54 +02:00
See <http://haskell-servant.readthedocs.org/en/stable/tutorial/Client.html the client section of the tutorial>.
2015-04-20 16:00:51 +02:00
.
<https://github.com/haskell-servant/servant/blob/master/servant-client/CHANGELOG.md CHANGELOG>
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
2016-04-21 12:22:54 +02:00
homepage: http://haskell-servant.readthedocs.org/
2015-04-20 15:55:41 +02:00
Bug-reports: http://github.com/haskell-servant/servant/issues
extra-source-files:
include/*.h
CHANGELOG.md
README.md
2014-12-08 11:10:51 +01:00
source-repository head
type: git
2015-04-20 15:55:41 +02:00
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
build-depends:
base >= 4.7 && < 4.10
, base-compat >= 0.9.1 && < 0.10
2017-01-01 19:02:56 +01:00
, aeson >= 0.7 && < 1.2
, attoparsec >= 0.12 && < 0.14
, base64-bytestring >= 1.0.0.1 && < 1.1
, bytestring >= 0.10 && < 0.11
, exceptions >= 0.8 && < 0.9
2016-09-02 15:25:22 +02:00
, http-api-data >= 0.3 && < 0.4
2016-07-09 13:31:58 +02:00
, http-client >= 0.4.18.1 && < 0.6
, http-client-tls >= 0.2.2 && < 0.4
, http-media >= 0.6.2 && < 0.7
, http-types >= 0.8.6 && < 0.10
, monad-control >= 1.0.0.4 && < 1.1
, network-uri >= 2.6 && < 2.7
, safe >= 0.3.9 && < 0.4
2016-09-17 17:47:57 +02:00
, servant == 0.9.*
, string-conversions >= 0.3 && < 0.5
, text >= 1.2 && < 1.3
, transformers >= 0.3 && < 0.6
, transformers-base >= 0.4.4 && < 0.5
, transformers-compat >= 0.4 && < 0.6
, mtl
hs-source-dirs: src
default-language: Haskell2010
2014-12-08 11:10:51 +01:00
ghc-options: -Wall
2016-04-22 08:32:39 +02:00
if impl(ghc >= 8.0)
ghc-options: -Wno-redundant-constraints
2015-12-27 17:54:29 +01:00
include-dirs: include
test-suite spec
type: exitcode-stdio-1.0
2016-04-18 12:07:23 +02:00
ghc-options: -Wall
default-language: Haskell2010
hs-source-dirs: test
main-is: Spec.hs
other-modules:
Servant.ClientSpec
, Servant.Common.BaseUrlSpec
build-depends:
base == 4.*
, base-compat
2015-09-12 14:11:24 +02:00
, transformers
2015-09-12 15:28:20 +02:00
, transformers-compat
, aeson
, bytestring
, deepseq
, hspec == 2.*
, http-api-data
2015-03-08 23:59:40 +01:00
, http-client
2015-02-17 00:32:15 +01:00
, http-media
, http-types
, HUnit
, network >= 2.6
2015-01-01 23:43:29 +01:00
, QuickCheck >= 2.7
2016-09-17 17:47:57 +02:00
, servant == 0.9.*
, servant-client
2016-09-17 17:47:57 +02:00
, servant-server == 0.9.*
2015-02-24 23:56:06 +01:00
, text
, wai
, warp