-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexample-servant-app.cabal
73 lines (70 loc) · 2.69 KB
/
example-servant-app.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
name: example-servant-app
version: 0.1.0.0
synopsis: example application that works with Goat Guardian
description: An example application that runs behind Goat Guardian.
homepage: http://github.com/arow-oss/goat-guardian
license: MIT
license-file: LICENSE
author: ARoW Co., Ltd.
maintainer: [email protected]
copyright: 2018 ARoW Co., Ltd.
category: Web
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: Lib
, Types
build-depends: base >= 4.7 && < 5
, blaze-html
, bytestring
, http-api-data
, http-client
, http-conduit
, http-reverse-proxy
, http-types
, persistent
, persistent-sqlite
, persistent-template
, monad-logger
, mtl
, servant
, servant-blaze
, servant-server
, text
, tonatona
, wai
, wai-extra
, warp
default-language: Haskell2010
ghc-options: -Wall -fwarn-incomplete-uni-patterns -fwarn-incomplete-record-updates -fwarn-monomorphism-restriction
default-extensions: DefaultSignatures
, DeriveDataTypeable
, DeriveFunctor
, DeriveGeneric
, MultiParamTypeClasses
, OverloadedStrings
, RankNTypes
, RecordWildCards
, ScopedTypeVariables
, ViewPatterns
executable example-servant-app
hs-source-dirs: app
main-is: Main.hs
build-depends: base >= 4.7 && < 5
, example-servant-app
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -fwarn-monomorphism-restriction
default-language: Haskell2010
default-extensions: DefaultSignatures
, DeriveDataTypeable
, DeriveFunctor
, DeriveGeneric
, OverloadedStrings
, RankNTypes
, RecordWildCards
, ScopedTypeVariables
, ViewPatterns
source-repository head
type: git
location: https://github.com/arow-oss/goat-guardian