2014-12-10 16:10:57 +01:00
|
|
|
name: servant-server
|
2016-04-15 10:02:57 +02:00
|
|
|
version: 0.7
|
2014-12-10 16:10:57 +01:00
|
|
|
synopsis: A family of combinators for defining webservices APIs and serving them
|
|
|
|
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-10 16:10:57 +01:00
|
|
|
.
|
2015-04-20 15:55:41 +02:00
|
|
|
<https://github.com/haskell-servant/servant/blob/master/servant-server/example/greet.hs Here>
|
|
|
|
is a runnable example, with comments, that defines a dummy API and implements
|
|
|
|
a webserver that serves this API, using this package.
|
2015-04-20 16:00:51 +02:00
|
|
|
.
|
|
|
|
<https://github.com/haskell-servant/servant/blob/master/servant-server/CHANGELOG.md CHANGELOG>
|
2016-04-21 12:22:54 +02:00
|
|
|
homepage: http://haskell-servant.readthedocs.org/
|
2015-04-20 15:55:41 +02:00
|
|
|
Bug-reports: http://github.com/haskell-servant/servant/issues
|
2014-12-10 16:10:57 +01:00
|
|
|
license: BSD3
|
|
|
|
license-file: LICENSE
|
2016-01-20 16:58:29 +01:00
|
|
|
author: Servant Contributors
|
|
|
|
maintainer: haskell-servant-maintainers@googlegroups.com
|
|
|
|
copyright: 2014-2016 Zalora South East Asia Pte Ltd, Servant Contributors
|
2014-12-10 16:10:57 +01:00
|
|
|
category: Web
|
|
|
|
build-type: Simple
|
|
|
|
cabal-version: >=1.10
|
|
|
|
tested-with: GHC >= 7.8
|
2015-01-04 16:22:28 +01:00
|
|
|
extra-source-files:
|
2016-01-05 05:05:05 +01:00
|
|
|
include/*.h
|
2015-01-04 16:22:28 +01:00
|
|
|
CHANGELOG.md
|
|
|
|
README.md
|
2015-07-09 23:34:21 +02:00
|
|
|
bug-reports: http://github.com/haskell-servant/servant/issues
|
2014-12-10 16:10:57 +01:00
|
|
|
source-repository head
|
|
|
|
type: git
|
2015-07-09 23:34:21 +02:00
|
|
|
location: http://github.com/haskell-servant/servant.git
|
2014-12-10 16:10:57 +01:00
|
|
|
|
2015-01-04 16:21:25 +01:00
|
|
|
|
2014-12-10 16:10:57 +01:00
|
|
|
library
|
|
|
|
exposed-modules:
|
|
|
|
Servant
|
|
|
|
Servant.Server
|
2016-03-06 22:23:55 +01:00
|
|
|
Servant.Server.Experimental.Auth
|
2014-12-19 18:15:21 +01:00
|
|
|
Servant.Server.Internal
|
2016-02-17 19:56:15 +01:00
|
|
|
Servant.Server.Internal.BasicAuth
|
2016-03-06 22:23:55 +01:00
|
|
|
Servant.Server.Internal.Context
|
2015-05-02 16:46:43 +02:00
|
|
|
Servant.Server.Internal.Enter
|
2015-06-01 19:38:51 +02:00
|
|
|
Servant.Server.Internal.Router
|
|
|
|
Servant.Server.Internal.RoutingApplication
|
|
|
|
Servant.Server.Internal.ServantErr
|
2014-12-10 16:10:57 +01:00
|
|
|
Servant.Utils.StaticFiles
|
|
|
|
build-depends:
|
2015-01-13 20:40:41 +01:00
|
|
|
base >= 4.7 && < 5
|
2016-03-01 12:41:24 +01:00
|
|
|
, base-compat >= 0.9
|
2016-02-18 22:45:05 +01:00
|
|
|
, aeson >= 0.7 && < 0.12
|
2015-05-27 15:19:30 +02:00
|
|
|
, attoparsec >= 0.12 && < 0.14
|
2016-02-17 19:56:15 +01:00
|
|
|
, base64-bytestring == 1.0.*
|
2015-01-13 20:40:41 +01:00
|
|
|
, bytestring >= 0.10 && < 0.11
|
2015-05-29 17:16:36 +02:00
|
|
|
, containers >= 0.5 && < 0.6
|
2015-12-03 14:08:36 +01:00
|
|
|
, http-api-data >= 0.1 && < 0.3
|
2015-10-13 20:40:35 +02:00
|
|
|
, http-types >= 0.8 && < 0.10
|
2015-01-13 20:40:41 +01:00
|
|
|
, network-uri >= 2.6 && < 2.7
|
2015-05-02 16:46:43 +02:00
|
|
|
, mtl >= 2 && < 3
|
|
|
|
, mmorph >= 1
|
2015-06-23 10:34:20 +02:00
|
|
|
, network >= 2.6 && < 2.7
|
2015-01-13 20:40:41 +01:00
|
|
|
, safe >= 0.3 && < 0.4
|
2016-04-15 10:02:57 +02:00
|
|
|
, servant == 0.7.*
|
2015-01-13 20:40:41 +01:00
|
|
|
, split >= 0.2 && < 0.3
|
2015-06-04 15:09:01 +02:00
|
|
|
, string-conversions >= 0.3 && < 0.5
|
2015-01-13 20:40:41 +01:00
|
|
|
, system-filepath >= 0.4 && < 0.5
|
2015-05-16 00:03:48 +02:00
|
|
|
, filepath >= 1
|
2015-01-13 20:40:41 +01:00
|
|
|
, text >= 1.2 && < 1.3
|
2016-02-20 13:36:50 +01:00
|
|
|
, transformers >= 0.3 && < 0.6
|
2015-09-12 15:28:20 +02:00
|
|
|
, transformers-compat>= 0.4
|
2016-01-04 17:21:14 +01:00
|
|
|
, wai >= 3.0 && < 3.3
|
2015-05-16 00:03:48 +02:00
|
|
|
, wai-app-static >= 3.0 && < 3.2
|
2016-01-04 17:21:14 +01:00
|
|
|
, warp >= 3.0 && < 3.3
|
2016-02-17 19:56:15 +01:00
|
|
|
, word8 == 0.1.*
|
2015-06-23 10:34:20 +02:00
|
|
|
|
2014-12-10 16:10:57 +01:00
|
|
|
hs-source-dirs: src
|
|
|
|
default-language: Haskell2010
|
|
|
|
ghc-options: -Wall
|
2015-12-27 17:54:29 +01:00
|
|
|
include-dirs: include
|
2014-12-10 16:10:57 +01:00
|
|
|
|
|
|
|
executable greet
|
|
|
|
main-is: greet.hs
|
|
|
|
hs-source-dirs: example
|
|
|
|
ghc-options: -Wall
|
|
|
|
default-language: Haskell2010
|
|
|
|
build-depends:
|
|
|
|
base
|
|
|
|
, servant
|
|
|
|
, servant-server
|
|
|
|
, aeson
|
|
|
|
, warp
|
|
|
|
, wai
|
|
|
|
, text
|
|
|
|
|
|
|
|
test-suite spec
|
|
|
|
type: exitcode-stdio-1.0
|
2016-04-18 12:07:23 +02:00
|
|
|
ghc-options: -Wall
|
2014-12-10 16:10:57 +01:00
|
|
|
default-language: Haskell2010
|
|
|
|
hs-source-dirs: test
|
|
|
|
main-is: Spec.hs
|
2015-09-23 18:26:05 +02:00
|
|
|
other-modules:
|
2016-01-14 23:43:48 +01:00
|
|
|
Servant.Server.ErrorSpec
|
2016-02-28 23:23:32 +01:00
|
|
|
Servant.Server.Internal.ContextSpec
|
2015-09-23 18:26:05 +02:00
|
|
|
Servant.Server.Internal.EnterSpec
|
|
|
|
Servant.ServerSpec
|
2016-02-28 23:23:32 +01:00
|
|
|
Servant.Server.UsingContextSpec
|
|
|
|
Servant.Server.UsingContextSpec.TestCombinators
|
2015-09-23 18:26:05 +02:00
|
|
|
Servant.Utils.StaticFilesSpec
|
2014-12-10 16:10:57 +01:00
|
|
|
build-depends:
|
|
|
|
base == 4.*
|
2016-03-01 09:19:13 +01:00
|
|
|
, base-compat
|
2014-12-10 16:10:57 +01:00
|
|
|
, aeson
|
2016-04-06 09:24:30 +02:00
|
|
|
, base64-bytestring
|
2014-12-10 16:10:57 +01:00
|
|
|
, bytestring
|
2015-04-13 15:13:55 +02:00
|
|
|
, bytestring-conversion
|
2014-12-10 16:10:57 +01:00
|
|
|
, directory
|
|
|
|
, exceptions
|
|
|
|
, hspec == 2.*
|
|
|
|
, hspec-wai
|
|
|
|
, http-types
|
|
|
|
, network >= 2.6
|
|
|
|
, QuickCheck
|
|
|
|
, parsec
|
2015-09-16 22:07:55 +02:00
|
|
|
, safe
|
2014-12-10 16:10:57 +01:00
|
|
|
, servant
|
2014-12-10 16:39:40 +01:00
|
|
|
, servant-server
|
2014-12-10 16:10:57 +01:00
|
|
|
, string-conversions
|
2016-01-14 23:43:48 +01:00
|
|
|
, should-not-typecheck == 2.*
|
2014-12-10 16:10:57 +01:00
|
|
|
, temporary
|
|
|
|
, text
|
|
|
|
, transformers
|
2015-09-12 15:28:20 +02:00
|
|
|
, transformers-compat
|
2015-05-02 16:46:43 +02:00
|
|
|
, mtl
|
2014-12-10 16:10:57 +01:00
|
|
|
, wai
|
|
|
|
, wai-extra
|
|
|
|
, warp
|
2015-05-03 01:27:48 +02:00
|
|
|
|
|
|
|
test-suite doctests
|
|
|
|
build-depends: base
|
|
|
|
, servant
|
|
|
|
, doctest
|
|
|
|
, filemanip
|
2015-05-14 13:47:39 +02:00
|
|
|
, directory
|
|
|
|
, filepath
|
2015-05-03 01:27:48 +02:00
|
|
|
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
|
2015-12-27 17:54:29 +01:00
|
|
|
include-dirs: include
|