-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.yaml
85 lines (78 loc) · 1.37 KB
/
package.yaml
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
name: echo-server
version: 1.0.0.0
github: "juspay/euler-hs/demo/echo-server"
license: Apache
author: "Juspay Technologies Pvt Ltd"
maintainer: "[email protected]"
copyright: "(C) Juspay Technologies Pvt Ltd 2019-2021"
description:
Demo application for EulerHS
default-extensions:
- NoImplicitPrelude
- GADTs
- RankNTypes
- DeriveFunctor
- DeriveGeneric
- OverloadedStrings
- LambdaCase
- MultiParamTypeClasses
- ExplicitNamespaces
- TypeApplications
- ScopedTypeVariables
- TypeOperators
- TypeFamilies
- DataKinds
- FlexibleContexts
- FlexibleInstances
- PatternSynonyms
- PolyKinds
- DefaultSignatures
- ConstraintKinds
- NamedFieldPuns
- TupleSections
- ViewPatterns
- MultiWayIf
- RecordWildCards
dependencies:
- base >= 4.7 && < 5
- bytestring
- aeson
- aeson-pretty
- mtl
- directory
- filepath
- time
- clock
- containers
- transformers
- template-haskell
- text
- fmt
- stm
- validation
- servant
- servant-server
- servant-client
- servant-swagger
- servant-docs
- http-client
- euler-hs
- warp
library:
source-dirs:
- src
ghc-options:
- -Wall
- -Wcompat
- -Widentities
- -fhide-source-paths
executables:
echo-server:
main: Main.hs
source-dirs: src/
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -Wall
# - -O2