61 lines
1.9 KiB
Text
61 lines
1.9 KiB
Text
name: tutorial
|
|
version: 0.7.1
|
|
synopsis: The servant tutorial
|
|
homepage: http://haskell-servant.readthedocs.org/
|
|
license: BSD3
|
|
license-file: LICENSE
|
|
author: Servant Contributors
|
|
maintainer: haskell-servant-maintainers@googlegroups.com
|
|
build-type: Simple
|
|
cabal-version: >=1.10
|
|
|
|
library
|
|
exposed-modules: ApiType
|
|
, Authentication
|
|
, Client
|
|
, Docs
|
|
, Javascript
|
|
, Server
|
|
build-depends: base == 4.*
|
|
, base-compat
|
|
, text
|
|
, aeson
|
|
, aeson-compat
|
|
, blaze-html
|
|
, directory
|
|
, blaze-markup
|
|
, containers
|
|
, servant == 0.7.*
|
|
, servant-server == 0.7.*
|
|
, servant-client == 0.7.*
|
|
, servant-docs == 0.7.*
|
|
, servant-js == 0.7.*
|
|
, warp
|
|
, http-media
|
|
, lucid
|
|
, time
|
|
, string-conversions
|
|
, bytestring
|
|
, attoparsec
|
|
, mtl
|
|
, random
|
|
, js-jquery
|
|
, wai
|
|
, http-types
|
|
, transformers
|
|
, markdown-unlit >= 0.4
|
|
, http-client
|
|
default-language: Haskell2010
|
|
ghc-options: -Wall -pgmL markdown-unlit
|
|
|
|
test-suite spec
|
|
type: exitcode-stdio-1.0
|
|
ghc-options: -Wall
|
|
default-language: Haskell2010
|
|
hs-source-dirs: test
|
|
main-is: Spec.hs
|
|
build-depends: base == 4.*
|
|
, tutorial
|
|
, hspec
|
|
, hspec-wai
|
|
, string-conversions
|