adventofcode/package.yaml

57 lines
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:
- Day1
2017-12-02 07:55:51 +00:00
- Day2
2017-12-05 23:25:25 +00:00
- Day3
2017-12-06 07:55:21 +00:00
- Day4
- Day5
2017-12-06 21:56:49 +00:00
- Day6
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:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- base
- adventofcode
2017-12-01 23:27:43 +00:00
- protolude
- pretty
2017-12-01 09:41:18 +00:00
tests:
adventofcode-test:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- base
- adventofcode
- tasty
- tasty-hunit
- HUnit