-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhakatime.cabal
185 lines (166 loc) · 6.46 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
cabal-version: 3.0
name: hakatime
version: 0.1.0
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
main-is: Main.hs
build-depends: base >= 4.9 && < 4.14
, aeson >= 1.4
, base64-bytestring
, bytestring
, fakedata
, polysemy == 1.3.*
, polysemy-plugin == 0.2.*
, http-client
, http-client-tls
, random
, optparse-applicative >= 0.15
, servant >= 0.17
, servant-client >= 0.17
, text
, time
, libhaka
default-language: Haskell2010
default-extensions: OverloadedStrings
, DataKinds
, TypeOperators
ghc-options: -Wall
-threaded
-rtsopts
-with-rtsopts=-N
library libhaka
hs-source-dirs: src
exposed-modules: Haka.Api
, Haka.Cli
, Haka.Types
other-modules: Haka.AesonHelpers
, Haka.Authentication
, Haka.Badges
, Haka.Config
, Haka.DatabaseOperations
, Haka.Db.Sessions
, Haka.Db.Statements
, Haka.Errors
, Haka.Heartbeats
, Haka.Projects
, Haka.Stats
, Haka.Users
, Haka.Utils
, Haka.PasswordUtils
, Paths_hakatime
autogen-modules: Paths_hakatime
build-depends: base >= 4.9 && < 4.14
, aeson >= 1.4
, base64-bytestring
, bits
, bytestring
, case-insensitive
, containers
, contravariant-extras
, cookie == 0.4.5
, cryptonite >= 0.26
, file-embed
, hasql == 1.4.*
, hasql-pool == 0.5.*
, http-media
, http-client
, http-client-tls
, hasql-transaction == 1.0.*
, uuid-types
, katip == 0.8.*
, mr-env == 0.1.*
, mtl == 2.2.2
, optparse-applicative >= 0.15
, polysemy == 1.3.*
, polysemy-plugin == 0.2.*
, postgresql-binary == 0.12.*
, raw-strings-qq
, safe-exceptions
, safe
, servant >= 0.17
, servant-server >= 0.17
, system-filepath
, text
, time
, transformers
-- https://github.com/Soostone/katip/issues/117
, unliftio-core >= 0.1 && < 0.2
, uuid
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
-fplugin=Polysemy.Plugin
-flate-specialise
-fspecialize-aggressively
default-language: Haskell2010
default-extensions: DataKinds
, FlexibleContexts
, GADTs
, LambdaCase
, PolyKinds
, RankNTypes
, OverloadedStrings
, DeriveGeneric
, ScopedTypeVariables
, TypeApplications
, TypeOperators
, TypeFamilies
executable hakatime
hs-source-dirs: app
main-is: Main.hs
build-depends: base >= 4.9 && < 4.14
, bytestring
, hasql-pool == 0.5.*
, katip == 0.8.*
, libhaka
, mr-env == 0.1.*
, mtl == 2.2.2
, optparse-applicative >= 0.15
, polysemy == 1.3.*
, polysemy-plugin == 0.2.*
, servant-server == 0.17.*
, transformers
, wai == 3.2.*
, wai-cors
, wai-extra
, wai-logger == 2.3.*
, warp == 3.3.*
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