2022-01-04 22:06:23 +01:00
|
|
|
cabal-version: 2.2
|
2019-02-20 18:05:49 +01:00
|
|
|
name: servant-client-ghcjs
|
|
|
|
version: 0.16
|
|
|
|
synopsis:
|
|
|
|
Automatic derivation of querying functions for servant webservices for GHCJS
|
2018-11-12 21:04:29 +01:00
|
|
|
|
2019-02-20 18:05:49 +01:00
|
|
|
category: Servant, Web
|
2017-09-24 16:05:38 +02:00
|
|
|
description:
|
|
|
|
This library lets you automatically derive 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>.
|
2017-09-24 16:05:38 +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/
|
2019-02-20 18:05:49 +01:00
|
|
|
bug-reports: http://github.com/haskell-servant/servant/issues
|
2021-10-31 22:37:56 +01:00
|
|
|
license: BSD-3-Clause
|
2019-02-20 18:05:49 +01:00
|
|
|
license-file: LICENSE
|
|
|
|
author: Servant Contributors
|
|
|
|
maintainer: haskell-servant-maintainers@googlegroups.com
|
|
|
|
copyright:
|
|
|
|
2014-2016 Zalora South East Asia Pte Ltd, 2016-2018 Servant Contributors
|
2018-11-12 21:04:29 +01:00
|
|
|
|
2019-02-20 18:05:49 +01:00
|
|
|
build-type: Simple
|
|
|
|
tested-with: ghc >=7.8
|
2017-09-24 16:05:38 +02:00
|
|
|
extra-source-files:
|
|
|
|
CHANGELOG.md
|
|
|
|
README.md
|
2018-11-12 21:04:29 +01:00
|
|
|
|
2017-09-24 16:05:38 +02:00
|
|
|
source-repository head
|
2019-02-20 18:05:49 +01:00
|
|
|
type: git
|
2017-09-24 16:05:38 +02:00
|
|
|
location: http://github.com/haskell-servant/servant.git
|
|
|
|
|
|
|
|
library
|
|
|
|
exposed-modules:
|
|
|
|
Servant.Client.Ghcjs
|
|
|
|
Servant.Client.Internal.XhrClient
|
2018-11-09 18:04:47 +01:00
|
|
|
|
2019-02-20 18:05:49 +01:00
|
|
|
build-depends:
|
2022-02-11 19:22:57 +01:00
|
|
|
base >=4.11 && <5
|
2020-12-16 11:04:49 +01:00
|
|
|
, bytestring >=0.10 && <0.12
|
2019-02-20 18:05:49 +01:00
|
|
|
, case-insensitive >=1.2.0.0 && <1.3.0.0
|
|
|
|
, containers >=0.5 && <0.7
|
|
|
|
, exceptions >=0.8 && <0.11
|
|
|
|
, ghcjs-base >=0.2.0.0 && <0.3.0.0
|
|
|
|
, ghcjs-prim >=0.1.0.0 && <0.2.0.0
|
2019-04-16 11:45:13 +02:00
|
|
|
, http-media >=0.6.2 && <0.9
|
2019-02-20 18:05:49 +01:00
|
|
|
, http-types >=0.12 && <0.13
|
|
|
|
, monad-control >=1.0.0.4 && <1.1
|
|
|
|
, mtl >=2.2.2 && <2.3
|
|
|
|
, semigroupoids >=5.3 && <5.4
|
|
|
|
, string-conversions >=0.3 && <0.5
|
|
|
|
, transformers >=0.3 && <0.6
|
|
|
|
, transformers-base >=0.4.4 && <0.5
|
2018-11-09 18:04:47 +01:00
|
|
|
|
|
|
|
-- strict, as we re-export stuff
|
|
|
|
build-depends:
|
2022-01-31 15:13:47 +01:00
|
|
|
servant >=0.16 && <0.20
|
|
|
|
, servant-client-core >=0.16 && <0.20
|
2018-11-09 18:04:47 +01:00
|
|
|
|
2019-02-20 18:05:49 +01:00
|
|
|
hs-source-dirs: src
|
2017-09-24 16:05:38 +02:00
|
|
|
default-language: Haskell2010
|
2019-02-20 18:05:49 +01:00
|
|
|
ghc-options: -Wall -Wno-redundant-constraints
|