forked from parsonsmatt/servant-persistent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservant-persistent.cabal
82 lines (77 loc) · 1.67 KB
/
servant-persistent.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
74
75
76
77
78
79
80
81
82
name: servant-persistent
version: 0.2.0.0
synopsis: Brief example on using persistent with servant
description: Brief example on using persistent with servant
license: MIT
license-file: LICENSE
author: Matt Parsons
maintainer: parsonsmatt@gmail.com
copyright: 2016 Matt Parsons
category: Web
build-type: Simple
cabal-version: >=1.18
source-repository head
type:
git
location:
https://www.github.com/parsonsmatt/servant-persistent
executable perservant
main-is:
Main.hs
build-depends:
base
, servant-persistent
, persistent-postgresql
, wai
, warp
, monad-logger
, safe
hs-source-dirs:
app
default-language:
Haskell2010
library
default-language:
Haskell2010
hs-source-dirs:
src
exposed-modules:
Config
, Models
, Api
, Api.User
build-depends:
base
, aeson
, bytestring
, monad-control
, monad-logger
, mtl
, persistent
, persistent-postgresql
, persistent-template
, servant
, servant-js
, servant-server
, transformers
, wai
, wai-extra
, warp
test-suite servant-persistent-test
type:
exitcode-stdio-1.0
hs-source-dirs:
test
main-is:
Spec.hs
other-modules:
ApiSpec
build-depends:
base
, servant-persistent
, QuickCheck
, hspec
ghc-options:
-threaded -rtsopts -with-rtsopts=-N
default-language:
Haskell2010