servant/servant/servant.cabal

122 lines
3.5 KiB
Plaintext
Raw Normal View History

name: servant
2015-07-27 22:26:49 +02:00
version: 0.5
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
.
You can learn about the basics in the <http://haskell-servant.github.io/tutorial tutorial>.
2014-12-08 10:56:02 +01:00
.
2015-04-20 16:00:51 +02:00
<https://github.com/haskell-servant/servant/blob/master/servant/CHANGELOG.md CHANGELOG>
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
author: Servant Contributors
maintainer: haskell-servant-maintainers@googlegroups.com
copyright: 2014-2016 Zalora South East Asia Pte Ltd, Servant Contributors
category: Web
build-type: Simple
extra-source-files: include/*.h
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
2015-01-08 16:24:19 +01:00
Servant.API.ContentTypes
2014-12-08 12:28:11 +01:00
Servant.API.Header
Servant.API.HttpVersion
Servant.API.Internal.Test.ComprehensiveAPI
Servant.API.IsSecure
Servant.API.QueryParam
Servant.API.Raw
Servant.API.RemoteHost
Servant.API.ReqBody
2015-04-13 15:12:33 +02:00
Servant.API.ResponseHeaders
Servant.API.Sub
Servant.API.Vault
Servant.API.Verbs
2016-01-14 23:43:48 +01:00
Servant.API.WithNamedConfig
Servant.Utils.Links
build-depends:
2014-10-28 05:55:07 +01:00
base >=4.7 && <5
, aeson >= 0.7
2015-02-25 12:48:15 +01:00
, attoparsec >= 0.12
2015-01-08 16:24:19 +01:00
, bytestring == 0.10.*
2015-04-13 15:12:33 +02:00
, bytestring-conversion == 0.3.*
, case-insensitive >= 1.2
, http-api-data >= 0.1 && < 0.3
2015-02-24 10:29:00 +01:00
, http-media >= 0.4 && < 0.7
2015-10-13 20:40:35 +02:00
, http-types >= 0.8 && < 0.10
, text >= 1 && < 2
2015-06-04 15:09:01 +02:00
, string-conversions >= 0.3 && < 0.5
, network-uri >= 2.6
, vault >= 0.3 && <0.4
hs-source-dirs: src
default-language: Haskell2010
2015-04-20 19:52:29 +02:00
other-extensions: CPP
, ConstraintKinds
2015-02-18 12:07:54 +01:00
, DataKinds
, DeriveDataTypeable
2015-02-18 12:07:54 +01:00
, FlexibleInstances
, FunctionalDependencies
2015-02-18 12:07:54 +01:00
, GADTs
, KindSignatures
, MultiParamTypeClasses
2015-02-18 12:07:54 +01:00
, OverlappingInstances
, OverloadedStrings
, PolyKinds
, QuasiQuotes
2015-02-18 12:07:54 +01:00
, RecordWildCards
, ScopedTypeVariables
, TemplateHaskell
, TypeFamilies
, TypeOperators
2015-02-18 12:07:54 +01:00
, TypeSynonymInstances
, UndecidableInstances
2014-12-08 10:56:02 +01:00
ghc-options: -Wall
2015-12-27 17:54:29 +01:00
include-dirs: include
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
2015-09-23 18:26:05 +02:00
other-modules:
Servant.API.ContentTypesSpec
Servant.API.ResponseHeadersSpec
Servant.Utils.LinksSpec
2014-10-27 07:24:23 +01:00
build-depends:
base == 4.*
2015-02-20 01:07:36 +01:00
, aeson
2015-02-25 12:48:15 +01:00
, attoparsec
2015-02-20 11:13:10 +01:00
, bytestring
2014-11-14 09:14:08 +01:00
, hspec == 2.*
, QuickCheck
, quickcheck-instances
, servant
2014-10-27 07:24:23 +01:00
, string-conversions
, text
, url
test-suite doctests
build-depends: base
, servant
, doctest
, filemanip
2015-05-14 13:47:39 +02:00
, directory
, filepath
type: exitcode-stdio-1.0
main-is: test/Doctests.hs
buildable: True
default-language: Haskell2010
ghc-options: -threaded
2015-12-27 17:54:29 +01:00
include-dirs: include