adventofcode/package.yaml

68 lines
1.1 KiB
YAML
Raw Normal View History

2017-12-01 09:41:18 +00:00
name: adventofcode
version: '0.1.0.0'
synopsis: Solutions for adventofcode
description: Please see the README on Github at <https://github.com/yogsototh/adventofcode#readme>
category: Web
author: Yann Esposito
maintainer: yann.esposito@gmail.com
copyright: ! 'Copyright: © 2017 Yann Esposito'
license: BSD3
github: yogsototh/adventofcode
extra-source-files:
- README.md
library:
source-dirs: src
exposed-modules:
2017-12-11 14:59:07 +00:00
- Day01
- Day02
- Day03
- Day04
- Day05
- Day06
- Day07
- Day08
- Day09
2017-12-10 12:07:53 +00:00
- Day10
2017-12-11 15:36:18 +00:00
- Day11
2017-12-12 10:04:43 +00:00
- Day12
- Day13
2017-12-01 09:41:18 +00:00
dependencies:
- base >=4.7 && <5
- protolude
2017-12-05 23:25:25 +00:00
- containers
2017-12-02 07:55:51 +00:00
- foldl
2017-12-05 23:25:25 +00:00
- text
2017-12-06 07:55:21 +00:00
- array
2017-12-07 12:11:46 +00:00
- parsec
2017-12-01 09:41:18 +00:00
executables:
adventofcode-exe:
main: Main.hs
source-dirs: app
ghc-options:
- -O2
2017-12-01 09:41:18 +00:00
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- base
- adventofcode
2017-12-01 23:27:43 +00:00
- protolude
- pretty
2017-12-09 02:21:51 +00:00
- containers
2017-12-01 09:41:18 +00:00
tests:
adventofcode-test:
main: Spec.hs
source-dirs: test
ghc-options:
- -O2
2017-12-01 09:41:18 +00:00
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- protolude
2017-12-01 09:41:18 +00:00
- base
- adventofcode
- tasty
- tasty-hunit
- HUnit