forked from zoomhub/zoomhub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
zoomhub.cabal
164 lines (161 loc) · 3.7 KB
/
zoomhub.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
name: zoomhub
version: 2.0.0.0
synopsis: Share and view high-resolution images effortlessly.
description: Please see README.md
homepage: http://github.com/zoomhub/zoomhub#readme
license: MIT
license-file: LICENSE
author: ZoomHub
maintainer: [email protected]
copyright: 2013–2016 ZoomHub
category: Web
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
bug-reports: http://github.com/zoomhub/zoomhub/issues
source-repository head
type: git
location: http://github.com/zoomhub/zoomhub.git
library
exposed-modules:
Data.Time.Units.Instances
, Network.HTTP.Client.Instances
, Network.URI.Instances
, ZoomHub.API
, ZoomHub.API.ContentTypes.JavaScript
, ZoomHub.API.Errors
, ZoomHub.API.JSONP.Errors
, ZoomHub.API.Types.Callback
, ZoomHub.API.Types.Content
, ZoomHub.API.Types.DeepZoomImage
, ZoomHub.API.Types.JSONP
, ZoomHub.API.Types.NonRESTfulResponse
, ZoomHub.Config
, ZoomHub.Log.Logger
, ZoomHub.Log.RequestLogger
, ZoomHub.Main
, ZoomHub.Pipeline
, ZoomHub.Rackspace.CloudFiles
, ZoomHub.Servant.RawCapture
, ZoomHub.Servant.RequiredQueryParam
, ZoomHub.Storage.SQLite
, ZoomHub.Types.BaseURI
, ZoomHub.Types.Content
, ZoomHub.Types.ContentBaseURI
, ZoomHub.Types.ContentId
, ZoomHub.Types.ContentMIME
, ZoomHub.Types.ContentState
, ZoomHub.Types.ContentType
, ZoomHub.Types.ContentURI
, ZoomHub.Types.DatabasePath
, ZoomHub.Types.DeepZoomImage
, ZoomHub.Types.StaticBaseURI
, ZoomHub.Types.TempPath
, ZoomHub.Utils
, ZoomHub.Web.Errors
, ZoomHub.Web.Static
, ZoomHub.Web.Types.Embed
, ZoomHub.Web.Types.EmbedDimension
, ZoomHub.Web.Types.EmbedId
, ZoomHub.Web.Types.OpenSeadragonTileSource
, ZoomHub.Web.Types.OpenSeadragonViewerConfig
, ZoomHub.Web.Types.ViewContent
, ZoomHub.Worker
default-language: Haskell2010
ghc-options: -Wall
hs-source-dirs: src
build-depends:
aeson
, aeson-casing
, aeson-pretty
, async
, atomic-write
, base
, blaze-builder
, bytestring
, case-insensitive
, cassava
, containers
, cryptonite
, data-default
, directory
, either
, enclosed-exceptions
, envy
, exceptions
, fast-logger
, filepath
, hashids
, http-api-data
, http-client
, http-media
, http-types
, iproute
, lens
, lens-aeson
, lucid
, mime
, mtl
, network
, network-uri
, process
, random
, retry
, safe
, servant
, servant-lucid
, servant-server
, split
, sqlite-simple
, stm
, string-conversions
, temporary
, text
, time
, timeit
, time-units
, transformers
, unix
, unordered-containers
, utf8-string
, wai
, wai-app-static
, wai-cors
, wai-extra
, warp
, wreq
, xml
executable zoomhub
default-language: Haskell2010
ghc-options: -Wall
main-is: Main.hs
build-depends:
base
, zoomhub
test-suite tests
default-language: Haskell2010
ghc-options: -Wall
hs-source-dirs: tests
main-is: Spec.hs
type: exitcode-stdio-1.0
other-modules:
ZoomHub.APISpec
ZoomHub.Types.ContentIdSpec
ZoomHub.Types.ContentURISpec
ZoomHub.Types.DeepZoomImageSpec
build-depends:
aeson
, base
, bytestring
, data-default
, hspec == 2.*
, hspec-wai
, http-types
, network-uri
, QuickCheck
, quickcheck-instances
, servant-server
, sqlite-simple
, text
, wai
, zoomhub