2015-09-21 12:31:00 +02:00
name: servant-foreign
2017-12-01 22:26:53 +01:00
version: 0.11
2015-09-23 00:03:56 +02:00
synopsis: Helpers for generating clients for servant APIs in any programming language
2015-09-22 21:36:03 +02:00
description:
Helper types and functions for generating client functions for servant APIs in any programming language
.
This package provides types and functions that collect all the data needed to generate client functions in the programming language of your choice. This effectively means you only have to write the code that "pretty-prints" this data as some code in your target language.
.
2015-09-23 00:03:56 +02:00
See the servant-js package for an example
2015-09-22 21:36:03 +02:00
.
<https://github.com/haskell-servant/servant/blob/master/servant-foreign/CHANGELOG.md CHANGELOG>
2015-09-21 12:31:00 +02:00
license: BSD3
license-file: LICENSE
2016-01-20 16:58:29 +01:00
author: Servant Contributors
maintainer: haskell-servant-maintainers@googlegroups.com
copyright: 2015-2016 Servant Contributors
2017-07-25 09:46:57 +02:00
category: Servant, Web
2015-09-21 12:31:00 +02:00
build-type: Simple
cabal-version: >=1.10
extra-source-files:
2016-01-05 05:05:05 +01:00
include/*.h
2015-09-21 12:31:00 +02:00
CHANGELOG.md
README.md
2016-05-13 12:45:30 +02:00
bug-reports: http://github.com/haskell-servant/servant/issues
2017-10-22 11:59:10 +02:00
tested-with:
GHC==7.8.4
GHC==7.10.3
GHC==8.0.2
GHC==8.2.1
2015-09-21 12:31:00 +02:00
source-repository head
type: git
location: http://github.com/haskell-servant/servant.git
library
2016-02-17 22:47:30 +01:00
exposed-modules: Servant.Foreign
, Servant.Foreign.Internal
, Servant.Foreign.Inflections
2016-01-06 18:20:20 +01:00
build-depends: base == 4.*
, lens == 4.*
2017-11-06 09:40:39 +01:00
, servant == 0.12.*
2016-01-06 18:20:20 +01:00
, text >= 1.2 && < 1.3
, http-types
2015-09-21 12:31:00 +02:00
hs-source-dirs: src
default-language: Haskell2010
2015-10-02 10:23:57 +02: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
2017-09-20 14:44:42 +02:00
default-extensions: ConstraintKinds
, CPP
2016-02-17 22:47:30 +01:00
, DataKinds
2017-09-20 14:44:42 +02:00
, DeriveDataTypeable
2016-02-17 22:47:30 +01:00
, FlexibleContexts
, FlexibleInstances
, GeneralizedNewtypeDeriving
, MultiParamTypeClasses
2017-09-20 14:44:42 +02:00
, OverloadedStrings
, PolyKinds
2016-02-17 22:47:30 +01:00
, ScopedTypeVariables
, TemplateHaskell
, TypeFamilies
, TypeOperators
, UndecidableInstances
2015-11-04 12:16:14 +01:00
test-suite spec
type: exitcode-stdio-1.0
hs-source-dirs: test
ghc-options: -Wall
2016-01-06 18:20:20 +01:00
include-dirs: include
2015-11-04 12:16:14 +01:00
main-is: Spec.hs
2016-02-17 22:47:30 +01:00
other-modules: Servant.ForeignSpec
2017-10-22 13:13:18 +02:00
build-tool-depends:
hspec-discover:hspec-discover
2015-11-04 12:16:14 +01:00
build-depends: base
, hspec >= 2.1.8
2017-01-19 23:09:54 +01:00
, servant
2015-11-04 12:16:14 +01:00
, servant-foreign
2015-12-02 15:26:45 +01:00
default-language: Haskell2010
2016-02-17 22:47:30 +01:00
default-extensions: ConstraintKinds
, DataKinds
, FlexibleContexts
, FlexibleInstances
, GeneralizedNewtypeDeriving
, MultiParamTypeClasses
, ScopedTypeVariables
, TypeFamilies
, TypeOperators
, UndecidableInstances
, OverloadedStrings
, PolyKinds