servant/servant-client/servant-client.cabal

90 lines
2.3 KiB
Plaintext
Raw Normal View History

name: servant-client
2016-04-15 10:02:57 +02:00
version: 0.7
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 && <5
, aeson
, attoparsec
, base64-bytestring
, bytestring
, exceptions
, http-api-data >= 0.1 && < 0.3
, http-client
2015-01-22 23:18:13 +01:00
, http-client-tls
, http-media
, http-types
, network-uri >= 2.6
, safe
2016-04-15 10:02:57 +02:00
, servant == 0.7.*
, string-conversions
, text
, transformers
2015-09-12 15:28:20 +02:00
, transformers-compat
hs-source-dirs: src
default-language: Haskell2010
2014-12-08 11:10:51 +01:00
ghc-options: -Wall
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.*
2015-09-12 14:11:24 +02:00
, transformers
2015-09-12 15:28:20 +02:00
, transformers-compat
, aeson
, bytestring
, deepseq
, hspec == 2.*
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-04-15 10:02:57 +02:00
, servant == 0.7.*
, servant-client
2016-04-15 10:02:57 +02:00
, servant-server == 0.7.*
2015-02-24 23:56:06 +01:00
, text
, wai
, warp