-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
issue-wanted.cabal
173 lines (154 loc) · 5.92 KB
/
issue-wanted.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
cabal-version: 2.4
name: issue-wanted
version: 0.0.0
description: Web application to help beginners to start contributing into Haskell projects
synopsis: Web application to help beginners to start contributing into Haskell projects
homepage: https://github.com/kowainik/issue-wanted#readme
bug-reports: https://github.com/kowainik/issue-wanted/issues
license: MPL-2.0
license-file: LICENSE
author: Kowainik
maintainer: [email protected]
copyright: 2018 Kowainik
category: Web, Application
build-type: Simple
extra-doc-files: README.md
CHANGELOG.md
tested-with: GHC == 8.6.5
source-repository head
type: git
location: https://github.com/kowainik/issue-wanted.git
common common-options
build-depends: base-noprelude ^>= 4.12.0.0
, relude ^>= 0.5.0
ghc-options: -Wall
-Wincomplete-uni-patterns
-Wincomplete-record-updates
-Wcompat
-Widentities
-Wredundant-constraints
-fhide-source-paths
-Wpartial-fields
default-language: Haskell2010
default-extensions: BangPatterns
ConstraintKinds
DataKinds
DeriveGeneric
DerivingStrategies
DerivingVia
FlexibleContexts
FlexibleInstances
GeneralizedNewtypeDeriving
InstanceSigs
KindSignatures
LambdaCase
MultiParamTypeClasses
OverloadedStrings
OverloadedLabels
RecordWildCards
ScopedTypeVariables
TypeApplications
TypeFamilies
TypeOperators
library
import: common-options
hs-source-dirs: src
exposed-modules: Prelude
IW
-- Application Monad
IW.App
IW.App.Env
IW.App.Error
IW.App.Monad
IW.Config
-- Core Modules
IW.Core.Id
IW.Core.Issue
IW.Core.SqlArray
IW.Core.Repo
IW.Core.Url
IW.Core.WithId
-- Database
IW.Db
IW.Db.Functions
IW.Db.Issue
IW.Db.Repo
IW.Db.Schema
-- Effects
IW.Effects.Cabal
IW.Effects.Download
IW.Effects.Log
-- Server
IW.Server
IW.Server.Issue
IW.Server.Repo
IW.Server.Types
-- Sync Worker
IW.Sync.Search
IW.Sync.Update
IW.Time
build-depends: aeson >= 1.4
, async ^>= 2.2.2
, bytestring ^>= 0.10
, Cabal ^>= 2.4.1.0
, case-insensitive ^>= 1.2
, co-log ^>= 0.3.0
, containers >= 0.6
, elm-street ^>= 0.0.1
, github == 0.22
, http-api-data ^>= 0.4
, http-client ^>= 0.6
, http-client-tls ^>= 0.3.5.3
, http-types ^>= 0.12
, lens ^>= 4.17
, mtl ^>= 2.2.2
, postgresql-simple ^>= 0.6.1
, postgresql-simple-named ^>= 0.0.2.0
, random ^>= 1.1
, resource-pool
, servant ^>= 0.16
, servant-server ^>= 0.16
, text
, time >= 1.8 && < 1.10
, tomland ^>= 1.1
, unliftio ^>= 0.2.12
, unliftio-core ^>= 0.1.2.0
, unordered-containers
, vector ^>= 0.12.0.3
, warp ^>= 3.2
executable issue-wanted
import: common-options
hs-source-dirs: app
main-is: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: issue-wanted
executable generate-elm
import: common-options
hs-source-dirs: generate-elm
main-is: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: issue-wanted
, elm-street ^>= 0.0.1
test-suite issue-wanted-test
import: common-options
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
other-modules: Test.Assert
Test.Common
Test.Core.Issue
Test.Core.Repo
Test.Db
Test.Data
Test.Gen
Test.Sync
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: issue-wanted
, github == 0.22
, hedgehog ^>= 1.0
, hspec
, hspec-core
, mtl
, postgresql-simple
, resource-pool
, unordered-containers