2018-11-26 02:32:15 +00:00
|
|
|
name: adventofcode
|
|
|
|
version: 0.1.0.0
|
|
|
|
github: "ionathanch/adventofcode"
|
|
|
|
license: BSD3
|
|
|
|
author: "Jonathan Chan"
|
|
|
|
maintainer: "afnl686@gmail.com"
|
|
|
|
copyright: "2018 Jonathan Chan"
|
|
|
|
|
|
|
|
extra-source-files:
|
|
|
|
- README.md
|
|
|
|
- ChangeLog.md
|
|
|
|
|
|
|
|
# Metadata used when publishing your package
|
|
|
|
# synopsis: Short description of your package
|
|
|
|
# category: Web
|
|
|
|
|
|
|
|
# To avoid duplicated efforts in documentation and dealing with the
|
|
|
|
# complications of embedding Haddock markup inside cabal files, it is
|
|
|
|
# common to point users to the README.md file.
|
|
|
|
description: Please see the README on GitHub at <https://github.com/ionathanch/adventofcode#readme>
|
|
|
|
|
|
|
|
dependencies:
|
|
|
|
- base >= 4.7 && < 5
|
2018-12-01 08:41:50 +00:00
|
|
|
- containers
|
2018-12-03 08:24:21 +00:00
|
|
|
- text
|
2018-11-26 02:32:15 +00:00
|
|
|
|
|
|
|
library:
|
|
|
|
source-dirs: src
|
|
|
|
|
|
|
|
executables:
|
|
|
|
adventofcode-exe:
|
|
|
|
main: Main.hs
|
|
|
|
source-dirs: app
|
|
|
|
ghc-options:
|
|
|
|
- -threaded
|
|
|
|
- -rtsopts
|
|
|
|
- -with-rtsopts=-N
|
|
|
|
dependencies:
|
|
|
|
- adventofcode
|