-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHTTPImageServer.cabal
More file actions
54 lines (52 loc) · 1.23 KB
/
HTTPImageServer.cabal
File metadata and controls
54 lines (52 loc) · 1.23 KB
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
cabal-version: >=1.10
-- Initial package description 'HTTPImageServer.cabal' generated by 'cabal
-- init'. For further documentation, see
-- http://haskell.org/cabal/users-guide/
name: HTTPImageServer
version: 0.1.0.0
-- synopsis:
-- description:
-- bug-reports:
-- license:
license-file: LICENSE
author: Oskar Lundström
maintainer: 21679735+osklunds@users.noreply.github.com
-- copyright:
-- category:
build-type: Simple
extra-source-files: CHANGELOG.md, README.md
executable HTTPImageServer
main-is: Main.hs
ghc-options:
"-Wno-missing-home-modules"
-O2
-freverse-errors
-threaded
other-modules:
HTMLGen,
RequestHandler
-- other-extensions:
build-depends:
base >=4.13,
wai >= 3.2.3,
warp >= 3.3.18,
http-types >= 0.12.3,
directory >= 1.3.6.0,
bytestring >= 0.10.10.1,
filepath >= 1.4.2.1,
blaze-builder >= 0.4.2.2,
text >= 1.2.4.0,
template-haskell >= 2.15.0.0,
file-embed >= 0.0.15.0,
containers,
time,
QuickCheck,
http-client,
temporary,
async,
pcre-heavy,
pcre-light,
http-conduit
hs-source-dirs:
src
default-language: Haskell2010