aboutsummaryrefslogtreecommitdiff
path: root/common/common.cabal
blob: e072acf222f2c90d5e62159411044fa80cb2daaf (plain)
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:                common
version:             0.0.1
license:             GPL-3
license-file:        LICENSE
author:              Joris Guyonvarch
maintainer:          joris@guyonvarch.me
category:            Web
build-type:          Simple
cabal-version:       >=1.10

library
  ghc-options:         -Wall -Werror
  exposed-modules:     Common.Message
                     , Common.Message.Key
                     , Common.Model
                     , Common.Util.Text
                     , Common.View.Format
  other-modules:       Common.Message.Lang
                     , Common.Message.Translation
                     , Common.Model.PaymentCategory
                     , Common.Model.CreateCategory
                     , Common.Model.CreatePayment
                     , Common.Model.CreateIncome
                     , Common.Model.EditCategory
                     , Common.Model.EditPayment
                     , Common.Model.InitResult
                     , Common.Model.EditIncome
                     , Common.Model.Frequency
                     , Common.Model.Currency
                     , Common.Model.Category
                     , Common.Model.Payment
                     , Common.Model.Income
                     , Common.Model.SignIn
                     , Common.Model.Init
                     , Common.Model.User
  build-depends:       aeson
                     , base >=4.9 && <4.11
                     , text
                     , time
  hs-source-dirs:      src
  default-language:    Haskell2010