servant/servant.cabal

71 lines
2.1 KiB
Plaintext
Raw Normal View History

name: servant
version: 0.2.2
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
.
<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
license: BSD3
license-file: LICENSE
2014-10-29 18:51:09 +01:00
author: Alp Mestanogullari, Sönke Hahn, Julian K. Arni
maintainer: alpmestan@gmail.com
2014-10-30 08:47:54 +01:00
copyright: 2014 Zalora South East Asia Pte Ltd
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
library
exposed-modules:
Servant.API
Servant.API.Alternative
Servant.API.Capture
Servant.API.Delete
Servant.API.Get
2014-12-08 12:28:11 +01:00
Servant.API.Header
2015-02-10 01:06:42 +01:00
Servant.API.Patch
Servant.API.Post
Servant.API.Put
Servant.API.QueryParam
2014-12-28 22:56:58 +01:00
Servant.API.MatrixParam
Servant.API.Raw
Servant.API.ReqBody
Servant.API.Sub
Servant.Common.Text
Servant.QQ
Servant.Utils.Links
build-depends:
2014-10-28 05:55:07 +01:00
base >=4.7 && <5
, text >= 1
2014-10-28 13:22:11 +01:00
, template-haskell
, parsec >= 3.1
, string-conversions >= 0.3
, network-uri >= 2.6
hs-source-dirs: src
default-language: Haskell2010
2014-12-08 10:56:02 +01:00
ghc-options: -Wall
2014-10-27 07:24:23 +01:00
test-suite spec
type: exitcode-stdio-1.0
ghc-options:
-Wall -fno-warn-name-shadowing -fno-warn-missing-signatures
2014-10-27 07:24:23 +01:00
default-language: Haskell2010
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.*
, QuickCheck
2014-11-12 11:34:33 +01:00
, parsec
, servant
2014-10-27 07:24:23 +01:00
, string-conversions
, text