2018-11-12 21:04:29 +01:00
|
|
|
cabal-version: >=1.10
|
2014-11-27 18:28:01 +01:00
|
|
|
name: servant-client
|
2020-11-22 15:51:32 +01:00
|
|
|
version: 0.18.2
|
2018-11-12 21:04:29 +01:00
|
|
|
|
|
|
|
synopsis: Automatic derivation of querying functions for servant
|
|
|
|
category: Servant, Web
|
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.
|
|
|
|
.
|
2019-03-02 10:08:03 +01:00
|
|
|
See <http://docs.servant.dev/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>
|
2018-11-12 21:04:29 +01:00
|
|
|
|
2019-03-02 10:08:03 +01:00
|
|
|
homepage: http://docs.servant.dev/
|
2018-11-12 21:04:29 +01:00
|
|
|
bug-reports: http://github.com/haskell-servant/servant/issues
|
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
|
2019-02-27 17:13:35 +01:00
|
|
|
copyright: 2014-2016 Zalora South East Asia Pte Ltd, 2016-2019 Servant Contributors
|
2014-11-27 18:28:01 +01:00
|
|
|
build-type: Simple
|
2020-10-25 14:24:06 +01:00
|
|
|
tested-with: GHC ==8.0.2 || ==8.2.2 || ==8.4.4 || ==8.6.5 || ==8.8.4 || ==8.10.2
|
2018-11-12 21:04:29 +01:00
|
|
|
|
2016-04-16 15:51:38 +02:00
|
|
|
extra-source-files:
|
|
|
|
CHANGELOG.md
|
|
|
|
README.md
|
2018-11-12 21:04:29 +01:00
|
|
|
|
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
|
2018-11-01 18:42:30 +01:00
|
|
|
Servant.Client.Streaming
|
2017-09-12 18:38:52 +02:00
|
|
|
Servant.Client.Internal.HttpClient
|
2018-11-01 18:42:30 +01:00
|
|
|
Servant.Client.Internal.HttpClient.Streaming
|
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
|
2014-11-27 18:28:01 +01:00
|
|
|
build-depends:
|
2020-05-07 01:15:07 +02:00
|
|
|
base >= 4.9 && < 4.15
|
2020-12-16 11:04:49 +01:00
|
|
|
, bytestring >= 0.10.8.1 && < 0.12
|
2018-11-09 18:04:47 +01:00
|
|
|
, containers >= 0.5.7.1 && < 0.7
|
2018-11-09 18:43:55 +01:00
|
|
|
, deepseq >= 1.4.2.0 && < 1.5
|
2018-11-09 18:04:47 +01:00
|
|
|
, mtl >= 2.2.2 && < 2.3
|
|
|
|
, stm >= 2.4.5.1 && < 2.6
|
2018-01-25 12:49:39 +01:00
|
|
|
, text >= 1.2.3.0 && < 1.3
|
2019-09-11 09:34:29 +02:00
|
|
|
, time >= 1.6.0.1 && < 1.10
|
2018-11-09 18:04:47 +01:00
|
|
|
, transformers >= 0.5.2.0 && < 0.6
|
2018-01-25 12:49:39 +01:00
|
|
|
|
2019-02-05 10:51:42 +01:00
|
|
|
if !impl(ghc >= 8.2)
|
|
|
|
build-depends:
|
|
|
|
bifunctors >= 5.5.3 && < 5.6
|
|
|
|
|
2018-11-09 18:04:47 +01:00
|
|
|
-- Servant dependencies.
|
|
|
|
-- Strict dependency on `servant-client-core` as we re-export things.
|
2018-01-25 12:49:39 +01:00
|
|
|
build-depends:
|
2020-07-30 18:03:58 +02:00
|
|
|
servant == 0.18.*
|
2020-11-22 15:51:32 +01:00
|
|
|
, servant-client-core >= 0.18.2 && <0.18.3
|
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:
|
2019-09-11 09:34:29 +02:00
|
|
|
base-compat >= 0.10.5 && < 0.12
|
2020-12-11 22:52:32 +01:00
|
|
|
, http-client >= 0.5.13.1 && < 0.8
|
2019-04-16 11:45:13 +02:00
|
|
|
, http-media >= 0.7.1.3 && < 0.9
|
2018-11-09 18:04:47 +01:00
|
|
|
, http-types >= 0.12.2 && < 0.13
|
2018-06-18 15:28:51 +02:00
|
|
|
, exceptions >= 0.10.0 && < 0.11
|
2018-06-26 19:11:28 +02:00
|
|
|
, kan-extensions >= 5.2 && < 5.3
|
2018-06-18 15:28:51 +02:00
|
|
|
, monad-control >= 1.0.2.3 && < 1.1
|
2018-11-09 18:04:47 +01:00
|
|
|
, semigroupoids >= 5.3.1 && < 5.4
|
2018-06-18 15:28:51 +02:00
|
|
|
, transformers-base >= 0.4.5.2 && < 0.5
|
|
|
|
, transformers-compat >= 0.6.2 && < 0.7
|
2018-01-25 12:49:39 +01:00
|
|
|
|
2014-11-27 18:28:01 +01:00
|
|
|
hs-source-dirs: src
|
|
|
|
default-language: Haskell2010
|
2018-07-11 00:39:38 +02:00
|
|
|
ghc-options: -Wall -Wno-redundant-constraints
|
2014-11-27 18:28:01 +01:00
|
|
|
|
|
|
|
test-suite spec
|
|
|
|
type: exitcode-stdio-1.0
|
2018-06-26 19:11:28 +02:00
|
|
|
ghc-options: -Wall -rtsopts -threaded "-with-rtsopts=-T -N2"
|
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:
|
2019-03-16 08:35:32 +01:00
|
|
|
Servant.BasicAuthSpec
|
|
|
|
Servant.ClientTestUtils
|
|
|
|
Servant.ConnectionErrorSpec
|
|
|
|
Servant.FailSpec
|
|
|
|
Servant.GenAuthSpec
|
|
|
|
Servant.HoistClientSpec
|
2017-11-04 05:10:29 +01:00
|
|
|
Servant.StreamSpec
|
2019-03-16 08:35:32 +01:00
|
|
|
Servant.SuccessSpec
|
|
|
|
Servant.WrappedApiSpec
|
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
|
2016-09-02 02:24:49 +02:00
|
|
|
, http-api-data
|
2015-03-08 23:59:40 +01:00
|
|
|
, http-client
|
2014-11-27 18:28:01 +01:00
|
|
|
, http-types
|
2017-01-16 10:44:25 +01:00
|
|
|
, mtl
|
2018-06-26 19:11:28 +02:00
|
|
|
, kan-extensions
|
2014-11-27 18:28:01 +01:00
|
|
|
, servant-client
|
2017-09-13 18:36:20 +02:00
|
|
|
, servant-client-core
|
2020-10-31 20:45:46 +01:00
|
|
|
, sop-core
|
2019-01-25 17:17:58 +01:00
|
|
|
, stm
|
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
|
|
|
|
2020-06-06 06:43:51 +02:00
|
|
|
-- Additional dependencies
|
2018-01-25 12:49:39 +01:00
|
|
|
build-depends:
|
2018-06-26 19:11:28 +02:00
|
|
|
entropy >= 0.4.1.3 && < 0.5
|
2019-02-21 09:36:38 +01:00
|
|
|
, hspec >= 2.6.0 && < 2.8
|
2018-11-09 18:04:47 +01:00
|
|
|
, HUnit >= 1.6.0.0 && < 1.7
|
2019-05-28 14:27:52 +02:00
|
|
|
, network >= 2.8.0.0 && < 3.2
|
2020-12-05 20:49:11 +01:00
|
|
|
, QuickCheck >= 2.12.6.1 && < 2.15
|
2020-07-30 18:03:58 +02:00
|
|
|
, servant == 0.18.*
|
|
|
|
, servant-server == 0.18.*
|
2018-06-26 19:11:28 +02:00
|
|
|
, tdigest >= 0.2 && < 0.3
|
2018-01-25 12:49:39 +01:00
|
|
|
|
|
|
|
build-tool-depends:
|
2019-02-21 09:36:38 +01:00
|
|
|
hspec-discover:hspec-discover >= 2.6.0 && < 2.8
|
2018-04-18 15:01:42 +02:00
|
|
|
|
|
|
|
test-suite readme
|
|
|
|
type: exitcode-stdio-1.0
|
|
|
|
main-is: README.lhs
|
|
|
|
build-depends: base, servant, http-client, text, servant-client, markdown-unlit
|
|
|
|
build-tool-depends: markdown-unlit:markdown-unlit
|
|
|
|
ghc-options: -pgmL markdown-unlit
|
2018-06-19 11:38:58 +02:00
|
|
|
default-language: Haskell2010
|