This repository was archived by the owner on May 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservant-photo-gallery.cabal
177 lines (171 loc) · 5.02 KB
/
servant-photo-gallery.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
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.33.0.
--
-- see: https://github.com/sol/hpack
--
-- hash: 996f7497a37d940d28cba7e0ecfd40db44381ba49f91bd0850ed68c8b043a8cf
name: servant-photo-gallery
version: 0.1.0.0
synopsis: Photo gallery API server
description: Please see the README on GitHub at <https://github.com/githubrogryza/servant-photo-gallery#readme>
category: Program
homepage: https://github.com/rogryza/servant-photo-gallery#readme
bug-reports: https://github.com/rogryza/servant-photo-gallery/issues
author: Rodrigo Gryzinski
maintainer: [email protected]
copyright: 2019 Rodrigo Gryzinski
license: MIT
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
source-repository head
type: git
location: https://github.com/rogryza/servant-photo-gallery
library
exposed-modules:
PG.Api
PG.App
PG.Auth
PG.Config
PG.Effects.Auth
PG.Effects.Clock
PG.Effects.FileStore
PG.Effects.PostDatabase
PG.Env
PG.Orphans
PG.Server
PG.Types
PG.Util
other-modules:
Paths_servant_photo_gallery
hs-source-dirs:
src
default-extensions: ConstraintKinds DataKinds DeriveAnyClass DeriveFoldable DeriveFunctor DeriveGeneric DeriveLift DeriveTraversable DerivingStrategies EmptyCase FlexibleContexts FlexibleInstances FunctionalDependencies LambdaCase GADTs GeneralizedNewtypeDeriving InstanceSigs LambdaCase MultiParamTypeClasses NamedFieldPuns OverloadedStrings StandaloneDeriving TypeApplications TypeFamilies TypeOperators
ghc-options: -Wall -Wcompat -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints
build-depends:
JuicyPixels
, aeson
, base >=4.7 && <5
, bytestring
, configuration-tools
, cryptonite
, directory
, filepath
, http-api-data
, http-media
, http-types
, jose
, lens
, monad-logger
, mtl
, network-uri
, optparse-applicative
, servant
, servant-auth
, servant-auth-server
, servant-multipart
, servant-server
, sqlite-simple
, text
, time
, unordered-containers
, wai
, wai-cors
, warp
default-language: Haskell2010
executable servant-photo-gallery-exe
main-is: Main.hs
other-modules:
Paths_servant_photo_gallery
hs-source-dirs:
app
default-extensions: ConstraintKinds DataKinds DeriveAnyClass DeriveFoldable DeriveFunctor DeriveGeneric DeriveLift DeriveTraversable DerivingStrategies EmptyCase FlexibleContexts FlexibleInstances FunctionalDependencies LambdaCase GADTs GeneralizedNewtypeDeriving InstanceSigs LambdaCase MultiParamTypeClasses NamedFieldPuns OverloadedStrings StandaloneDeriving TypeApplications TypeFamilies TypeOperators
ghc-options: -Wall -Wcompat -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints -threaded -rtsopts -with-rtsopts=-N
build-depends:
JuicyPixels
, aeson
, base >=4.7 && <5
, bytestring
, configuration-tools
, cryptonite
, directory
, filepath
, http-api-data
, http-media
, http-types
, jose
, lens
, monad-logger
, mtl
, network-uri
, optparse-applicative
, servant
, servant-auth
, servant-auth-server
, servant-multipart
, servant-photo-gallery
, servant-server
, sqlite-simple
, text
, time
, unordered-containers
, wai
, wai-cors
, warp
default-language: Haskell2010
test-suite servant-photo-gallery-test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Auth
Effects.Auth
Effects.FileStore
Effects.PostDatabase
Orphans
Types
Paths_servant_photo_gallery
hs-source-dirs:
test
default-extensions: ConstraintKinds DataKinds DeriveAnyClass DeriveFoldable DeriveFunctor DeriveGeneric DeriveLift DeriveTraversable DerivingStrategies EmptyCase FlexibleContexts FlexibleInstances FunctionalDependencies LambdaCase GADTs GeneralizedNewtypeDeriving InstanceSigs LambdaCase MultiParamTypeClasses NamedFieldPuns OverloadedStrings StandaloneDeriving TypeApplications TypeFamilies TypeOperators
ghc-options: -Wall -Wcompat -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints -threaded -rtsopts -with-rtsopts=-N
build-depends:
JuicyPixels
, aeson
, base >=4.7 && <5
, bytestring
, configuration-tools
, containers
, cryptonite
, directory
, filepath
, hedgehog
, hedgehog-corpus
, http-api-data
, http-client
, http-media
, http-types
, jose
, lens
, mmorph
, monad-logger
, mtl
, network-uri
, optparse-applicative
, servant
, servant-auth
, servant-auth-client
, servant-auth-server
, servant-client
, servant-multipart
, servant-photo-gallery
, servant-server
, sqlite-simple
, template-haskell
, text
, time
, unordered-containers
, wai
, wai-cors
, warp
default-language: Haskell2010