-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmy-katip-wai-example.cabal
105 lines (81 loc) · 1.87 KB
/
my-katip-wai-example.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
cabal-version: 3.8
name: my-katip-wai-example
version: 0.1.0.0
flag pedantic
description: Enables @-Werror@, which turns warnings into errors.
default: False
manual: True
common shared
default-language: GHC2021
default-extensions:
DataKinds
DuplicateRecordFields
LambdaCase
MultiWayIf
NoFieldSelectors
OverloadedRecordDot
OverloadedStrings
RecordWildCards
StrictData
TypeFamilies
TypeOperators
ghc-options:
-Weverything
-Wno-all-missed-specialisations
-Wno-implicit-prelude
-Wno-missed-specialisations
-Wno-missing-deriving-strategies
-Wno-missing-import-lists
-Wno-missing-kind-signatures
-Wno-missing-local-signatures
-Wno-missing-role-annotations
-Wno-missing-safe-haskell-mode
-Wno-monomorphism-restriction
-Wno-safe
-Wno-unsafe
-Werror=incomplete-patterns
if flag(pedantic)
ghc-options:
-Werror
build-depends:
, base >=4.7 && <5
autogen-modules:
Paths_my_katip_wai_example
other-modules:
Paths_my_katip_wai_example
common shared-exe
import:
, shared
build-depends:
, my-katip-wai-example
ghc-options:
-threaded
-rtsopts
-with-rtsopts=-N
library
import: shared
hs-source-dirs: src
build-depends:
, exceptions ^>= 0.10.8
, katip ^>= 0.8.8.2
, katip-wai
, mtl ^>= 2.3.1
, openapi3 ^>= 3.2.4
, servant-openapi3 ^>= 2.0.1.6
, servant-server ^>= 0.20
, servant-swagger-ui ^>= 0.3.5.5.0.1
, unliftio ^>= 0.2.25.0
, uuid ^>= 1.3.16
, wai ^>= 3.2.4
, warp ^>= 3.4.1
exposed-modules:
Katip.Wai.Example
Katip.Wai.Example.AppData
Katip.Wai.Example.AppM
Katip.Wai.Example.Middleware
Katip.Wai.Example.Servant
Katip.Wai.Example.Short
executable my-katip-wai-example
import: shared-exe
hs-source-dirs: app
main-is: Main.hs