2014-10-21 15:25:34 +02:00
name: servant
2015-01-01 22:46:58 +01:00
version: 0.2.2
2014-12-10 16:11:57 +01:00
synopsis: A family of combinators for defining webservices APIs
2014-12-08 10:56:02 +01:00
description:
A family of combinators for defining webservices APIs and serving them
.
2014-12-08 11:00:26 +01:00
You can learn about the basics in <http://haskell-servant.github.io/getting-started/ the getting started> guide.
2014-12-08 10:56:02 +01:00
.
2014-12-10 16:11:57 +01:00
<https://github.com/haskell-servant/servant-server/blob/master/example/greet.hs Here>'s a runnable example, with comments, that defines a dummy API and
implements a webserver that serves this API, using the <http://hackage.haskell.org/package/servant-server servant-server> package.
2014-12-08 10:56:02 +01:00
homepage: http://haskell-servant.github.io/
Bug-reports: http://github.com/haskell-servant/servant/issues
2014-10-21 15:25:34 +02:00
license: BSD3
license-file: LICENSE
2014-10-29 18:51:09 +01:00
author: Alp Mestanogullari, Sönke Hahn, Julian K. Arni
2014-10-21 15:25:34 +02:00
maintainer: alpmestan@gmail.com
2014-10-30 08:47:54 +01:00
copyright: 2014 Zalora South East Asia Pte Ltd
2014-10-21 15:25:34 +02:00
category: Web
build-type: Simple
cabal-version: >=1.10
2014-11-22 13:54:24 +01:00
tested-with: GHC >= 7.8
2014-12-08 10:56:02 +01:00
source-repository head
type: git
location: http://github.com/haskell-servant/servant.git
2014-10-21 15:25:34 +02:00
library
2014-10-25 01:27:39 +02:00
exposed-modules:
Servant.API
2014-11-07 04:58:41 +01:00
Servant.API.Alternative
2014-10-25 01:27:39 +02:00
Servant.API.Capture
2014-10-28 09:14:10 +01:00
Servant.API.Delete
2014-10-25 01:27:39 +02:00
Servant.API.Get
2014-12-08 12:28:11 +01:00
Servant.API.Header
2014-10-25 01:27:39 +02:00
Servant.API.Post
2014-10-28 09:17:28 +01:00
Servant.API.Put
2014-11-07 04:58:41 +01:00
Servant.API.QueryParam
2014-12-28 22:56:58 +01:00
Servant.API.MatrixParam
2014-10-27 11:24:20 +01:00
Servant.API.Raw
2014-11-07 04:58:41 +01:00
Servant.API.ReqBody
2014-10-25 01:27:39 +02:00
Servant.API.Sub
2014-11-07 11:57:41 +01:00
Servant.Common.Text
2014-11-25 16:35:56 +01:00
Servant.QQ
2014-11-07 09:58:53 +01:00
Servant.Utils.Links
2014-10-21 15:25:34 +02:00
build-depends:
2014-10-28 05:55:07 +01:00
base >=4.7 && <5
2014-12-10 16:11:57 +01:00
, text >= 1
2014-10-28 13:22:11 +01:00
, template-haskell
2014-12-10 16:11:57 +01:00
, parsec >= 3.1
, string-conversions >= 0.3
2014-10-25 01:27:39 +02:00
hs-source-dirs: src
default-language: Haskell2010
2014-12-08 10:56:02 +01:00
ghc-options: -Wall
2014-10-25 01:27:39 +02:00
2014-10-27 07:24:23 +01:00
test-suite spec
type: exitcode-stdio-1.0
ghc-options:
2014-11-13 12:56:44 +01:00
-Wall -fno-warn-name-shadowing -fno-warn-missing-signatures
2014-10-27 07:24:23 +01:00
default-language: Haskell2010
2014-10-28 09:04:27 +01:00
hs-source-dirs: test
2014-10-27 07:24:23 +01:00
main-is: Spec.hs
build-depends:
base == 4.*
2014-11-14 09:14:08 +01:00
, hspec == 2.*
2014-10-31 14:50:57 +01:00
, QuickCheck
2014-11-12 11:34:33 +01:00
, parsec
2014-10-28 09:04:27 +01:00
, servant
2014-10-27 07:24:23 +01:00
, string-conversions
, text