forked from mujx/hakatime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhakatime.cabal
192 lines (175 loc) · 6.85 KB
/
hakatime.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
cabal-version: 3.0
name: hakatime
version: 1.3.2
synopsis: Wakatime API server implementation / Dashboard UI
description: Wakatime compatible server with an analytics dashboard.
license: Unlicense
license-file: UNLICENSE
author: Konstantinos Sideris
maintainer: [email protected]
category: Web, UI
build-type: Simple
extra-doc-files: README.md
tested-with: GHC == 8.8.3
source-repository head
type: git
location: https://github.com/mujx/hakatime
-- executable haka-data
-- hs-source-dirs: tools
-- mixins: base hiding (Prelude)
-- , relude (Relude as Prelude)
-- main-is: Main.hs
-- build-depends: base >= 4.9 && < 4.15
-- , aeson >= 1.4
-- , base64-bytestring
-- , fakedata
-- , http-client
-- , http-client-tls
-- , random
-- , optparse-applicative >= 0.15
-- , servant >= 0.17
-- , servant-client >= 0.17
-- , time
-- , hakatime
-- , relude >= 0.6.0.0
--
-- default-language: Haskell2010
-- default-extensions: OverloadedStrings
-- , DataKinds
-- , TypeOperators
--
-- ghc-options: -Wall
-- -threaded
-- -rtsopts
-- -with-rtsopts=-N
library
hs-source-dirs: src
mixins: base hiding (Prelude)
, relude (Relude as Prelude, Relude.Unsafe)
exposed-modules: Haka.Api
, Haka.Cli
, Haka.App
, Haka.Middleware
, Haka.Errors
, Haka.Handlers.Import
, Haka.Types
, Haka.Logger
other-modules: Haka.AesonHelpers
, Haka.Handlers.Authentication
, Haka.Handlers.Badges
, Haka.Database
, Haka.Db.Sessions
, Haka.Db.Statements
, Haka.Handlers.Heartbeats
, Haka.Handlers.Projects
, Haka.Handlers.Stats
, Haka.Handlers.Leaderboards
, Haka.Handlers.Users
, Haka.Handlers.Commits
, Haka.Utils
, Haka.PasswordUtils
, Paths_hakatime
autogen-modules: Paths_hakatime
build-depends: base >= 4.9 && < 4.15
, aeson >= 1.4
, base64-bytestring
, bytestring
, case-insensitive
, containers
, contravariant-extras
, cookie == 0.4.5
, cryptonite >= 0.26
, file-embed
, hasql == 1.4.*
, hasql-pool == 0.5.*
, hasql-queue == 1.2.*
, hasql-transaction == 1.0.*
, http-media
, http-client
, http-client-tls
, uuid-types
, katip == 0.8.*
, mr-env == 0.1.*
, req
, unix
, optparse-applicative >= 0.15
, postgresql-binary == 0.12.*
, raw-strings-qq
, safe-exceptions
, servant >= 0.17
, servant-server >= 0.17
, system-filepath
, text
, time
, uuid
, wai == 3.2.*
, wai-extra
, http-types
, relude >= 0.6.0.0
, postgresql-simple
, postgresql-simple-migration
, vector
ghc-options: -Wall
-Wcompat
-Widentities
-Wincomplete-record-updates
-Wmissed-specialisations
-Wincomplete-uni-patterns
-Wmissing-export-lists
-Wmissing-home-modules
-Wmonomorphism-restriction
-Wpartial-fields
-Wredundant-constraints
-fhide-source-paths
default-language: Haskell2010
default-extensions: DataKinds
, FlexibleContexts
, GADTs
, LambdaCase
, PolyKinds
, RankNTypes
, OverloadedStrings
, DeriveGeneric
, ScopedTypeVariables
, TypeApplications
, TypeOperators
, TypeFamilies
executable hakatime
hs-source-dirs: app
mixins: base hiding (Prelude)
, relude (Relude as Prelude)
main-is: Main.hs
build-depends: base >= 4.9 && < 4.15
, hasql == 1.4.*
, hasql-pool == 0.5.*
, hasql-queue == 1.2.*
, katip == 0.8.*
, hakatime
, mr-env == 0.1.*
, unix
, safe-exceptions
, optparse-applicative >= 0.15
, servant-server >= 0.17
, wai == 3.2.*
, wai-cors
, wai-extra
, wai-logger == 2.3.*
, warp == 3.3.*
, relude >= 0.6.0.0
ghc-options: -Wall
-threaded
-rtsopts
-with-rtsopts=-N
default-language: Haskell2010
default-extensions: OverloadedStrings
, TypeOperators
test-suite hakatime-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
build-depends: base
ghc-options: -Wall
-threaded
-rtsopts
-with-rtsopts=-N
default-language: Haskell2010