-
Notifications
You must be signed in to change notification settings - Fork 0
/
hipsterfy.cabal
134 lines (120 loc) · 3.44 KB
/
hipsterfy.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
cabal-version: 3.0
name: hipsterfy
version: 0.1.0.0
build-type: Simple
common lang
build-depends: base >=4.12 && <4.14
default-language: Haskell2010
default-extensions:
NoImplicitPrelude
Arrows
ConstraintKinds
DataKinds
DefaultSignatures
DeriveFunctor
DeriveGeneric
DuplicateRecordFields
FlexibleContexts
FlexibleInstances
GeneralizedNewtypeDeriving
MultiParamTypeClasses
NamedFieldPuns
OverloadedStrings
RecordWildCards
ScopedTypeVariables
TemplateHaskell
TypeOperators
ghc-options:
-Wall -Wincomplete-uni-patterns -Wcompat
-Wincomplete-record-updates -Wmissing-home-modules
-Wmissing-export-lists -Wredundant-constraints
build-depends: relude ==0.7.0.0
library
import: lang
hs-source-dirs: src
-- cabal-fmt: expand src
exposed-modules:
Hipsterfy.Application
Hipsterfy.Artist
Hipsterfy.Database
Hipsterfy.Database.Artist
Hipsterfy.Database.Jobs
Hipsterfy.Database.User
Hipsterfy.Internal.OrphanInstances
Hipsterfy.Jobs
Hipsterfy.Jobs.UpdateArtist
Hipsterfy.Jobs.UpdateUser
Hipsterfy.Session
Hipsterfy.Spotify
Hipsterfy.Spotify.API
Hipsterfy.Spotify.Auth
Hipsterfy.Spotify.Internal
Hipsterfy.Trace
Hipsterfy.User
build-depends:
, aeson ==1.5.1.0
, base64 ==0.4.2
, containers ==0.6.2.1
, faktory ==1.0.1.2
, hashable-time ==0.2.0.2
, http-types ==0.12.3
, lens ==4.19.2
, monad-parallel ==0.7.2.3
, opaleye ==0.6.7004.2
, postgresql-simple ==0.6.2
, product-profunctors ==0.10.0.1
, random-strings ==0.1.1.0
, time ==1.9.3
, tracing ==0.0.5.1
, unix ==2.7.2.2
, unordered-containers ==0.2.10.0
, wreq ==0.5.3.2
common exe-deps
build-depends:
, hipsterfy
, optparse-applicative ==0.15.1.0
test-suite tests
import: lang
import: exe-deps
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
-- cabal-fmt: expand test -Main
other-modules: Hipsterfy.Spotify.Spec
build-depends: hspec ==2.7.1
executable hipsterfy
import: lang
import: exe-deps
ghc-options: -threaded -with-rtsopts=-N
hs-source-dirs: cmd/hipsterfy
main-is: Main.hs
-- cabal-fmt: expand cmd/hipsterfy -Main
other-modules:
Hipsterfy.Server
Hipsterfy.Server.Handlers
Hipsterfy.Server.Internal.OrphanInstances
Hipsterfy.Server.Pages
Hipsterfy.Server.Session
build-depends:
, blaze-html ==0.9.1.2
, cookie ==0.4.5
, http-types ==0.12.3
, random-strings ==0.1.1.0
, scotty ==0.12
, scotty-cookie ==0.1.0.3
, split ==0.2.3.4
, time ==1.9.3
, tracing ==0.0.5.1
, unordered-containers ==0.2.10.0
, wai ==3.2.2.1
, wai-extra ==3.0.29.2
, warp ==3.3.11
executable hipsterfy-worker
import: lang
import: exe-deps
ghc-options: -threaded -with-rtsopts=-N
hs-source-dirs: cmd/hipsterfy-worker
main-is: Main.hs
-- cabal-fmt: expand cmd/hipsterfy-worker -Main
other-modules:
build-depends: async ==2.2.2