name: adventofcode1614 version: 0.1.0.0 synopsis: Initial project template from stack description: Please see README.md homepage: https://github.com/neilnjae/adventofcode16#readme license: BSD3 license-file: LICENSE author: Neil Smith maintainer: noone@njae.me.uk copyright: 2016 Neil Smith category: None build-type: Simple extra-source-files: README.md cabal-version: >=1.10 library hs-source-dirs: src build-depends: base >= 4.7 && < 5 default-language: Haskell2010 executable advent14 hs-source-dirs: app main-is: advent14.hs ghc-options: -O2 -threaded -rtsopts -with-rtsopts=-N build-depends: base , adventofcode1614 , adventofcode16 , MissingH default-language: Haskell2010 executable advent14c hs-source-dirs: app main-is: advent14c.hs ghc-options: -O2 -threaded -rtsopts -with-rtsopts=-N build-depends: base , adventofcode1614 , adventofcode16 , bytestring , cryptonite default-language: Haskell2010 executable advent14parallel hs-source-dirs: app main-is: advent14parallel.hs ghc-options: -O2 -threaded -rtsopts -with-rtsopts=-N build-depends: base , adventofcode1614 , adventofcode16 , parallel , bytestring , cryptonite default-language: Haskell2010 test-suite adventofcode1614-test type: exitcode-stdio-1.0 hs-source-dirs: test main-is: Spec.hs build-depends: base , adventofcode1614 , adventofcode16 , split ghc-options: -threaded -rtsopts -with-rtsopts=-N default-language: Haskell2010 source-repository head type: git location: https://github.com/neilnjae/adventofcode16