1
0
Fork 0
adventofcode/haskell/package.yaml

35 lines
962 B
YAML

name: aoc2019
version: 0.1.0.0
github: "ionathanch/adventofcode-2019"
license: BSD3
author: "Jonathan Chan"
maintainer: "afnl686@gmail.com"
copyright: "2019 Jonathan Chan"
# 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-2019#readme>
dependencies:
- base >= 4.7 && < 5
- containers
- mtl
library:
source-dirs: src
executables:
aoc2019-exe:
main: Main.hs
source-dirs: app
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- aoc2019