Add -Wall
[blog.git] / blog.cabal
1 cabal-version: >=1.10
2 name: blog
3 version: 0.1.0.0
4 license: BSD3
5 license-file: LICENSE
6 maintainer: luke_lau@icloud.com
7 author: Luke Lau
8 category: Web
9 build-type: Simple
10 extra-source-files:
11     CHANGELOG.md
12
13 executable blog
14     main-is: Main.hs
15     default-language: Haskell2010
16     ghc-options: -Wall
17     build-depends:
18         base >=4.11,
19         scotty,
20         scotty-cookie,
21         text,
22         mmark,
23         mmark-ext,
24         lucid,
25         filepath,
26         directory,
27         http-types,
28         time,
29         casing,
30         transformers,
31         containers,
32         random