-
Notifications
You must be signed in to change notification settings - Fork 10
/
example-servant-persistent.cabal
60 lines (58 loc) · 1.97 KB
/
example-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
name: example-servant-persistent
version: 0.1.0.0
synopsis: example with persistent and servant
description: Simple example to illustrate how to use persistent and servant in combination.
license: BSD3
license-file: LICENSE
author: James M.C. Haver II, Sönke Hahn
maintainer: [email protected], [email protected]
category: Web
build-type: Simple
cabal-version: >=1.10
executable example-servant-persistent
main-is: Main.hs
other-modules: Api
, App
, Models
build-depends: base >=4.8 && <4.11
, aeson
, monad-logger
, persistent
, persistent-template
, persistent-sqlite
, servant
, servant-server
, string-conversions
, text
, transformers
, wai
, warp
hs-source-dirs: src
default-language: Haskell2010
test-suite spec
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: test
, src
other-modules: Api
, App
, Models
, AppSpec
build-depends: base >=4.8 && <4.11
, hspec
, aeson
, persistent
, monad-logger
, persistent-template
, persistent-sqlite
, transformers
, wai
, servant
, servant-client
, servant-server
, string-conversions
, warp
, http-client
, text
, mockery
default-language: Haskell2010