2020-07-07 18:21:08 -04:00
|
|
|
cabal-version: 2.2
|
|
|
|
name: make-pages
|
|
|
|
version: 0.1.0
|
|
|
|
license: AGPL-3.0-or-later
|
|
|
|
|
|
|
|
author: Rhiannon Morris <rhi@rhiannon.website>
|
|
|
|
maintainer: Rhiannon Morris <rhi@rhiannon.website>
|
|
|
|
|
|
|
|
executable make-pages
|
|
|
|
hs-source-dirs: .
|
|
|
|
main-is: Main.hs
|
2020-07-09 00:20:09 -04:00
|
|
|
other-modules: Info, SinglePage
|
2020-07-07 18:21:08 -04:00
|
|
|
default-language: Haskell2010
|
|
|
|
default-extensions:
|
2020-07-07 20:52:01 -04:00
|
|
|
BlockArguments,
|
2020-07-11 23:40:14 -04:00
|
|
|
DeriveAnyClass,
|
|
|
|
DerivingStrategies,
|
2020-07-07 23:27:38 -04:00
|
|
|
DuplicateRecordFields,
|
2020-07-07 20:52:01 -04:00
|
|
|
LambdaCase,
|
2020-07-09 00:18:53 -04:00
|
|
|
NamedFieldPuns,
|
|
|
|
OverloadedStrings
|
2020-07-07 18:21:08 -04:00
|
|
|
build-depends:
|
2020-07-12 00:05:15 -04:00
|
|
|
base >= 4.12.0.0 && < 4.15,
|
|
|
|
containers ^>= 0.6.0.1,
|
|
|
|
time >= 1.8.0.2 && < 1.10,
|
|
|
|
bytestring ^>= 0.10.8.2,
|
|
|
|
text ^>= 1.2.3.1,
|
|
|
|
HsYAML ^>= 0.2.1.0,
|
2020-07-09 00:20:57 -04:00
|
|
|
optparse-applicative ^>= 0.15.1.0
|
2020-07-07 18:21:08 -04:00
|
|
|
ghc-options:
|
|
|
|
-Wall -threaded -rtsopts -with-rtsopts=-N
|