forked from dbushenko/scotty-blog-postgres
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hblog-scotty.cabal
40 lines (36 loc) · 1.66 KB
/
hblog-scotty.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
-- Initial erudit-scotty.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: hblog-scotty
version: 0.1.0.0
-- synopsis:
-- description:
-- license:
license-file: LICENSE
author: dbushenko
maintainer: [email protected]
-- copyright:
-- category:
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
executable hblog
ghc-options: -O3 -threaded -rtsopts "-with-rtsopts=-N8 -A32m"
main-is: Main.hs
-- other-modules:
-- other-extensions:
build-depends: base >=4.6 && <4.7
, scotty >= 0.9.1
, bytestring >= 0.9 && < 0.11
, text >= 0.11 && < 2.0
, postgresql-simple >= 0.4.10.0
, aeson >= 0.6 && < 0.9
, HTTP >= 4000.2.19
, transformers >= 0.4.3.0
, wai >= 3.0.2.3
, wai-middleware-static >= 0.7.0.1
, wai-extra >= 3.0.7
, resource-pool >= 0.2.3.2
, configurator >= 0.3.0.0
, MissingH >= 1.3.0.1
hs-source-dirs: src
default-language: Haskell2010