-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
181 lines (176 loc) · 3.28 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
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
copyright: 2019 Jean-Charles Quillet
maintainer: jeancharles.quillet@gmail.com
dependencies:
- QuickCheck
- aeson
- attoparsec
- base >= 4.7 && < 5
- bytestring
- case-insensitive
- containers
- cryptonite
- data-default
- directory
- either
- elm-syntax
- esqueleto
- formatting
- generics-sop
- haskell-to-elm
- hspec
- http-client
- http-client-tls
- http-media
- http-types
- microlens-platform
- monad-logger # Only needed for runNoLoggingT from Spec.hs
- mtl
- optparse-applicative
- path
- path-io
- persistent
- persistent-sqlite
- persistent-postgresql
- persistent-template
- prettyprinter
- quickcheck-instances
- refined
- rio
- rio-orphans
- servant
- servant-client
- servant-server
- temporary
- time
- unordered-containers
- wai-extra
- warp
- yaml
name: hscalendar
version: 0.1.0.0
author: Jean-Charles Quillet
github: jecaro/haskell/hscalendar
license: BSD3
library:
source-dirs: src
executables:
hscalendar-cli:
source-dirs: cli
main: Main.hs
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -Wall
- -Wcompat
- -Widentities
- -Wincomplete-record-updates
- -Wincomplete-uni-patterns
- -Wpartial-fields
- -Wredundant-constraints
dependencies:
- hscalendar
hscalendar-server:
source-dirs: server
main: Main.hs
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -Wall
- -Wcompat
- -Widentities
- -Wincomplete-record-updates
- -Wincomplete-uni-patterns
- -Wpartial-fields
- -Wredundant-constraints
dependencies:
- hscalendar
hscalendar-client:
source-dirs: client
main: Main.hs
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -Wall
- -Wcompat
- -Widentities
- -Wincomplete-record-updates
- -Wincomplete-uni-patterns
- -Wpartial-fields
- -Wredundant-constraints
dependencies:
- hscalendar
hscalendar-users:
source-dirs: users
main: Main.hs
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -Wall
- -Wcompat
- -Widentities
- -Wincomplete-record-updates
- -Wincomplete-uni-patterns
- -Wpartial-fields
- -Wredundant-constraints
dependencies:
- hscalendar
elm-generator:
source-dirs: elm-generator
main: Main.hs
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -Wall
- -Wcompat
- -Widentities
- -Wincomplete-record-updates
- -Wincomplete-uni-patterns
- -Wpartial-fields
- -Wredundant-constraints
dependencies:
- hscalendar
tests:
hscalendar-test:
main: Spec.hs
source-dirs:
- test
- src
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -Wall
- -Wcompat
- -Widentities
- -Wincomplete-record-updates
- -Wincomplete-uni-patterns
- -Wpartial-fields
- -Wredundant-constraints
dependencies:
- hscalendar
default-extensions:
- DataKinds
- DeriveFoldable
- DeriveFunctor
- DeriveTraversable
- DeriveGeneric
- FlexibleContexts
- FlexibleInstances
- FunctionalDependencies
- GADTs
- LambdaCase
- MultiParamTypeClasses
- NamedFieldPuns
- NoImplicitPrelude
- OverloadedStrings
- RankNTypes
- ScopedTypeVariables
- StandaloneDeriving
- TypeApplications
- TypeOperators
- TypeSynonymInstances