advent-of-code/hs/package.yaml
Joscha 3b0ea44036 [hs] Add day module
To help with reading input etc. for a single day
2020-12-03 00:09:12 +00:00

23 lines
335 B
YAML

name: hs
version: 0.1.0.0
dependencies:
- base >= 4.7 && < 5
- containers
- megaparsec
- optparse-applicative
- text
library:
source-dirs: src
executables:
aoc-hs:
main: Main.hs
source-dirs: app
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- hs