generated from newton-migosi/haskell-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
local-library.cabal
194 lines (176 loc) · 3.98 KB
/
local-library.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
cabal-version: 2.4
name: local-library
-- PVP summary: +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 0.1.0.0
category: Web
-- TODO: Before hackage release.
-- A short (one-line) description of the package.
-- synopsis:
-- A longer description of the package.
-- description:
-- A URL where users can report bugs.
-- bug-reports:
extra-source-files:
LICENSE
README.md
common shared
ghc-options:
-Wall -Wincomplete-record-updates -Wincomplete-uni-patterns
-Wmissing-deriving-strategies -Wunused-foralls -Wunused-foralls
-fprint-explicit-foralls -fprint-explicit-kinds
mixins:
base hiding (Prelude),
relude (Relude as Prelude, Relude.Container.One),
relude
default-extensions:
NoFieldSelectors
NoStarIsType
BangPatterns
ConstraintKinds
DataKinds
DeriveAnyClass
DeriveDataTypeable
DeriveFoldable
DeriveFunctor
DeriveGeneric
DeriveLift
DeriveTraversable
DerivingStrategies
DerivingVia
DuplicateRecordFields
EmptyCase
EmptyDataDecls
EmptyDataDeriving
ExistentialQuantification
ExplicitForAll
FlexibleContexts
FlexibleInstances
GADTSyntax
GeneralisedNewtypeDeriving
ImportQualifiedPost
KindSignatures
LambdaCase
LinearTypes
MultiParamTypeClasses
MultiWayIf
NumericUnderscores
OverloadedLabels
OverloadedStrings
PolyKinds
PostfixOperators
RankNTypes
ScopedTypeVariables
StandaloneDeriving
StandaloneKindSignatures
TupleSections
TypeApplications
TypeFamilies
TypeOperators
UnicodeSyntax
ViewPatterns
build-depends:
, aeson
, async
, base >=4.13.0.0 && <4.18.0.0.0
, data-default
, directory
, exceptions
, fast-logger
, filepath
, generic-lens
, hs-opentelemetry-api
, linear-base
, monad-logger
, mtl
, optics-core
, optics-th
, optparse-generic
, prettyprinter
, profunctors
, relude >=1.0
, resource-pool
, resourcet
, safe-exceptions
, shower
, time
, with-utf8
hs-source-dirs: src
default-language: Haskell2010
common test-deps
build-depends:
, hspec
, hspec-contrib
, hspec-golden
, hspec-wai
, HUnit
, QuickCheck
, tasty
, tasty-hspec
, tasty-quickcheck
common web-deps
build-depends:
, blaze-html
, cassava
, conduit
, http-client
, http-types
, servant-auth
, servant-auth-client
, servant-auth-server
, servant-auth-swagger
, servant-blaze
, servant-cassava
, servant-client
, servant-conduit
, servant-multipart
, servant-multipart-api
, servant-multipart-client
, servant-serialization
, servant-server
, servant-swagger
, servant-swagger-ui
, swagger2
, wai
, warp
common db-deps
build-depends:
, esqueleto
, persistent
, persistent-documentation
, persistent-lens
, persistent-migration
, persistent-pagination
, persistent-postgresql
, persistent-postgresql-streaming
, persistent-sqlite
, postgresql-simple
library
import: shared, web-deps, db-deps
exposed-modules:
LocalLibrary.API
LocalLibrary.Config
LocalLibrary.Greetings.API
LocalLibrary.Greetings.SampleData
hs-source-dirs: src
executable server
import: shared, web-deps, db-deps
main-is: Main.hs
hs-source-dirs: app
other-modules:
build-depends: local-library
executable manage-db
import: shared, web-deps, db-deps
main-is: Main.hs
hs-source-dirs: db
build-depends: local-library
test-suite tests
import: shared, test-deps, web-deps, db-deps
main-is: Main.hs
type: exitcode-stdio-1.0
hs-source-dirs: test
build-depends: local-library
other-modules:
Spec
Spec.Greetings