forked from capital-match/life-beyond-relational-db
-
Notifications
You must be signed in to change notification settings - Fork 0
/
eventsourced.cabal
41 lines (34 loc) · 1.17 KB
/
eventsourced.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
name: eventsourced
version: 0.1.0.0
license: AllRightsReserved
license-file: LICENSE
author: Capital Match
maintainer: [email protected]
category: Web
build-type: Simple
cabal-version: >=1.10
Library
Default-Language: Haskell2010
build-depends: base, mtl
, aeson, time
, text, stm
, bytestring, base64-bytestring
, containers
hs-source-dirs: src
exposed-modules: Capital.EventSourced
default-extensions: OverloadedStrings
ghc-options: -Wall -Werror -fno-warn-orphans -threaded -rtsopts -auto-all -caf-all
Executable demo
Default-Language: Haskell2010
main-is: demo-service.hs
hs-source-dirs: main
ghc-options: -threaded -rtsopts
build-depends: base, mtl, eventsourced
, servant, servant-server
, wai, aeson, warp, async
, text, either, stm, bytestring, containers, data-default
other-modules: Demo
, Demo.Model
, Demo.Service
, Demo.State
, Demo.Store