-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
109 lines (102 loc) · 2.18 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
name: core-backend
version: 1.0.0.0
github: "soverysour/tf-core-backend"
license: AllRightsReserved
author: "soverysour"
maintainer: "sebi.f@tuta.io"
copyright: "proprietary"
synopsis: Core backend service for the Trade-forall platform.
category: web
description: Please see the README on GitHub at <https://github.com/soverysour/core-backend#readme>
ghc-options:
- -Weverything
- -Werror
- -Wno-implicit-prelude
- -Wno-safe
- -Wno-unsafe
- -Wno-missing-import-lists
- -Wno-missed-specialisations
- -Wno-all-missed-specialisations
- -Wno-missing-local-signatures
- -Wno-monomorphism-restriction
dependencies:
- base >= 4.7 && < 5
- servant
- servant-server
- servant-auth
- servant-auth-server
- servant-foreign
- servant-options
# - servant-websockets -- Wait for github.com/moesenle/servant-websockets/pull/9
- beam-core
- beam-postgres
- beam-migrate
- postgresql-simple
- hedis
- wai
- wai-cors
- warp
- fast-logger
- aeson
- text
- bytestring
- cryptonite
- jose
- aeson
- string-conversions
- resource-pool
- time
- time-compat
- exceptions
- containers
- unordered-containers
- vector
- transformers
- conduit
- http-conduit
- http-types
- HTTP
- xml-conduit
- data-default-class
- concurrency
- swagger2
- lens
- extra
- regex-with-pcre
library:
source-dirs: src
executables:
core-backend-exe:
main: Main.hs
source-dirs: app
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -with-rtsopts=-T
dependencies:
- core-backend
- htoml-megaparsec
- unordered-containers
- ekg
swagger-spec-exe:
main: Main.hs
source-dirs: app-swagger
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- core-backend
- servant-swagger
- servant-auth-swagger
tests:
core-backend-test:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- core-backend