2014-11-27 18:28:01 +01:00
|
|
|
name: servant-client
|
2018-02-08 11:29:16 +01:00
|
|
|
version: 0.13
|
2014-12-10 16:51:05 +01:00
|
|
|
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>
|
2014-11-27 18:28:01 +01:00
|
|
|
license: BSD3
|
|
|
|
license-file: LICENSE
|
2016-01-20 16:58:29 +01:00
|
|
|
author: Servant Contributors
|
|
|
|
maintainer: haskell-servant-maintainers@googlegroups.com
|
2017-09-15 15:02:50 +02:00
|
|
|
copyright: 2014-2016 Zalora South East Asia Pte Ltd, 2016-2017 Servant Contributors
|
2017-07-25 09:46:57 +02:00
|
|
|
category: Servant, Web
|
2014-11-27 18:28:01 +01:00
|
|
|
build-type: Simple
|
|
|
|
cabal-version: >=1.10
|
2017-10-22 11:59:10 +02:00
|
|
|
tested-with:
|
|
|
|
GHC==7.8.4
|
|
|
|
GHC==7.10.3
|
|
|
|
GHC==8.0.2
|
2017-12-10 12:29:37 +01:00
|
|
|
GHC==8.2.2
|
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
|
2016-04-16 15:51:38 +02:00
|
|
|
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
|
2014-11-27 18:28:01 +01:00
|
|
|
|
|
|
|
library
|
|
|
|
exposed-modules:
|
2017-09-12 18:38:52 +02:00
|
|
|
Servant.Client
|
|
|
|
Servant.Client.Internal.HttpClient
|
2018-01-25 12:49:39 +01:00
|
|
|
|
|
|
|
-- Bundled with GHC: Lower bound to not force re-installs
|
|
|
|
-- text and mtl are bundled starting with GHC-8.4
|
|
|
|
--
|
|
|
|
-- note: mtl lower bound is so low because of GHC-7.8
|
2014-11-27 18:28:01 +01:00
|
|
|
build-depends:
|
2017-06-07 15:40:01 +02:00
|
|
|
base >= 4.7 && < 4.11
|
2018-01-25 12:49:39 +01:00
|
|
|
, bytestring >= 0.10.4.0 && < 0.11
|
|
|
|
, containers >= 0.5.5.1 && < 0.6
|
2017-09-14 15:53:51 +02:00
|
|
|
, mtl >= 2.1 && < 2.3
|
2018-01-25 12:49:39 +01:00
|
|
|
, text >= 1.2.3.0 && < 1.3
|
2017-12-31 02:48:44 +01:00
|
|
|
, time >= 1.4.2 && < 1.9
|
2018-01-25 12:49:39 +01:00
|
|
|
, transformers >= 0.3.0.0 && < 0.6
|
|
|
|
|
2018-01-30 17:40:02 +01:00
|
|
|
if !impl(ghc >= 8.0)
|
|
|
|
build-depends: semigroups >=0.18.3 && <0.19
|
|
|
|
|
2018-01-25 12:49:39 +01:00
|
|
|
-- Servant dependencies
|
|
|
|
build-depends:
|
2018-02-08 11:29:16 +01:00
|
|
|
servant-client-core == 0.13.*
|
2018-01-25 12:49:39 +01:00
|
|
|
|
|
|
|
-- Other dependencies: Lower bound around what is in the latest Stackage LTS.
|
|
|
|
-- Here can be exceptions if we really need features from the newer versions.
|
|
|
|
build-depends:
|
2018-03-09 20:26:03 +01:00
|
|
|
aeson >= 1.2.3.0 && < 1.4
|
2018-01-25 12:49:39 +01:00
|
|
|
, base-compat >= 0.9.3 && < 0.10
|
|
|
|
, attoparsec >= 0.13.2.0 && < 0.14
|
|
|
|
, http-client >= 0.5.7.1 && < 0.6
|
|
|
|
, http-client-tls >= 0.3.5.1 && < 0.4
|
|
|
|
, http-media >= 0.7.1.1 && < 0.8
|
2018-01-28 17:26:43 +01:00
|
|
|
, http-types >= 0.12 && < 0.13
|
2018-03-13 11:07:44 +01:00
|
|
|
, exceptions >= 0.8.3 && < 0.11
|
2018-01-25 12:49:39 +01:00
|
|
|
, monad-control >= 1.0.0.4 && < 1.1
|
|
|
|
, semigroupoids >= 5.2.1 && < 5.3
|
2017-12-31 02:48:44 +01:00
|
|
|
, stm >= 2.4.4.1 && < 2.5
|
2017-01-16 08:51:27 +01:00
|
|
|
, transformers-base >= 0.4.4 && < 0.5
|
2018-01-25 12:49:39 +01:00
|
|
|
, transformers-compat >= 0.5.1 && < 0.6
|
|
|
|
|
2014-11-27 18:28:01 +01:00
|
|
|
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
|
2014-11-27 18:28:01 +01:00
|
|
|
|
|
|
|
test-suite spec
|
|
|
|
type: exitcode-stdio-1.0
|
2018-02-27 15:31:41 +01:00
|
|
|
ghc-options: -Wall -rtsopts -with-rtsopts=-T
|
2014-11-27 18:28:01 +01:00
|
|
|
default-language: Haskell2010
|
|
|
|
hs-source-dirs: test
|
|
|
|
main-is: Spec.hs
|
2015-05-26 12:07:44 +02:00
|
|
|
other-modules:
|
|
|
|
Servant.ClientSpec
|
2017-11-04 05:10:29 +01:00
|
|
|
Servant.StreamSpec
|
2018-01-25 12:49:39 +01:00
|
|
|
|
|
|
|
-- Dependencies inherited from the library. No need to specify bounds.
|
2014-11-27 18:28:01 +01:00
|
|
|
build-depends:
|
2018-01-25 12:49:39 +01:00
|
|
|
base
|
2014-11-27 18:28:01 +01:00
|
|
|
, aeson
|
2017-01-16 10:44:25 +01:00
|
|
|
, base-compat
|
2014-11-27 18:28:01 +01:00
|
|
|
, bytestring
|
2017-09-12 20:43:16 +02:00
|
|
|
, containers
|
2016-09-02 02:24:49 +02:00
|
|
|
, http-api-data
|
2015-03-08 23:59:40 +01:00
|
|
|
, http-client
|
2015-02-17 00:32:15 +01:00
|
|
|
, http-media
|
2014-11-27 18:28:01 +01:00
|
|
|
, http-types
|
2017-01-16 10:44:25 +01:00
|
|
|
, mtl
|
2014-11-27 18:28:01 +01:00
|
|
|
, servant-client
|
2017-09-13 18:36:20 +02:00
|
|
|
, servant-client-core
|
2015-02-24 23:56:06 +01:00
|
|
|
, text
|
2017-01-16 10:44:25 +01:00
|
|
|
, transformers
|
|
|
|
, transformers-compat
|
2014-11-27 18:28:01 +01:00
|
|
|
, wai
|
|
|
|
, warp
|
2018-01-25 12:49:39 +01:00
|
|
|
|
|
|
|
-- Additonal dependencies
|
|
|
|
build-depends:
|
|
|
|
deepseq >= 1.3.0.2 && < 1.5
|
|
|
|
, generics-sop >= 0.3.1.0 && < 0.4
|
|
|
|
, hspec >= 2.4.4 && < 2.5
|
|
|
|
, HUnit >= 1.6 && < 1.7
|
|
|
|
, network >= 2.6.3.2 && < 2.7
|
|
|
|
, QuickCheck >= 2.10.1 && < 2.12
|
2018-02-08 11:29:16 +01:00
|
|
|
, servant == 0.13.*
|
|
|
|
, servant-server == 0.13.*
|
2018-01-25 12:49:39 +01:00
|
|
|
|
|
|
|
build-tool-depends:
|
|
|
|
hspec-discover:hspec-discover >= 2.4.4 && < 2.5
|