servant/servant/servant.cabal

152 lines
4.4 KiB
Plaintext
Raw Normal View History

name: servant
2017-05-14 20:41:39 +02:00
version: 0.11
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
.
2016-04-21 12:22:54 +02:00
You can learn about the basics in the <http://haskell-servant.readthedocs.org/en/stable/tutorial/index.html 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>
2016-04-21 12:22:54 +02:00
homepage: http://haskell-servant.readthedocs.org/
2014-12-08 10:56:02 +01:00
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: Servant Web
build-type: Custom
cabal-version: >=1.10
2014-11-22 13:54:24 +01:00
tested-with: GHC >= 7.8
extra-source-files:
include/*.h
CHANGELOG.md
2014-12-08 10:56:02 +01:00
source-repository head
type: git
location: http://github.com/haskell-servant/servant.git
custom-setup
setup-depends:
Cabal >=1.14, base, filepath, directory
library
exposed-modules:
Servant.API
Servant.API.Alternative
Servant.API.BasicAuth
Servant.API.Capture
2015-01-08 16:24:19 +01:00
Servant.API.ContentTypes
2017-05-16 10:18:16 +02:00
Servant.API.Empty
Servant.API.Experimental.Auth
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.TypeLevel
Servant.API.Vault
Servant.API.Verbs
2016-02-28 23:23:32 +01:00
Servant.API.WithNamedContext
Servant.Utils.Links
2016-04-21 13:31:51 +02:00
Servant.Utils.Enter
build-depends:
base >= 4.7 && < 4.10
, base-compat >= 0.9 && < 0.10
2017-04-17 20:35:20 +02:00
, aeson >= 0.7 && < 1.3
, attoparsec >= 0.12 && < 0.14
, bytestring >= 0.10 && < 0.11
, case-insensitive >= 1.2 && < 1.3
2016-09-02 02:45:05 +02:00
, http-api-data >= 0.3 && < 0.4
, http-media >= 0.4 && < 0.7
, http-types >= 0.8 && < 0.10
2016-11-15 21:33:23 +01:00
, natural-transformation >= 0.4 && < 0.5
, mtl >= 2.0 && < 2.3
2017-05-24 06:51:07 +02:00
, mmorph >= 1 && < 1.2
, tagged >= 0.7.3 && < 0.9
, text >= 1 && < 1.3
, string-conversions >= 0.3 && < 0.5
, network-uri >= 2.6 && < 2.7
, vault >= 0.3 && < 0.4
if !impl(ghc >= 8.0)
build-depends:
semigroups >= 0.16 && < 0.19
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
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
2014-10-27 07:24:23 +01:00
test-suite spec
type: exitcode-stdio-1.0
2016-04-18 12:07:23 +02:00
ghc-options: -Wall
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
2017-05-15 18:45:14 +02:00
Servant.Utils.EnterSpec
2014-10-27 07:24:23 +01:00
build-depends:
base == 4.*
, base-compat
2015-02-20 01:07:36 +01:00
, aeson
, aeson-compat >=0.3.3 && <0.4
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
2016-10-11 19:21:40 +02:00
if !impl(ghc >= 8.0)
build-depends:
semigroups >= 0.16 && < 0.19
test-suite doctests
build-depends: base
, servant
, doctest
, filemanip
2015-05-14 13:47:39 +02:00
, directory
, filepath
2017-01-16 10:09:41 +01:00
, hspec
type: exitcode-stdio-1.0
main-is: test/doctests.hs
buildable: True
default-language: Haskell2010
2016-04-18 12:07:23 +02:00
ghc-options: -Wall -threaded
build-tools: hsc2hs
2015-12-27 17:54:29 +01:00
include-dirs: include