adventofcode/adventofcode.cabal

90 lines
2 KiB
Text
Raw Normal View History

2017-12-12 10:04:43 +00:00
-- This file has been generated from package.yaml by hpack version 0.20.0.
2017-12-01 09:41:18 +00:00
--
-- see: https://github.com/sol/hpack
2017-12-12 10:04:43 +00:00
--
2017-12-14 20:17:31 +00:00
-- hash: ea04591b11d049b24eb195b76d379646dcfbc1c5bf4ee126d894309a7a7a3708
2017-12-01 09:41:18 +00:00
name: adventofcode
version: 0.1.0.0
synopsis: Solutions for adventofcode
homepage: https://github.com/yogsototh/adventofcode#readme
bug-reports: https://github.com/yogsototh/adventofcode/issues
license: BSD3
license-file: LICENSE
author: Yann Esposito
maintainer: yann.esposito@gmail.com
copyright: Copyright: © 2017 Yann Esposito
category: Web
build-type: Simple
cabal-version: >= 1.10
description: Please see the README on Github at <https://github.com/yogsototh/adventofcode#readme>
extra-source-files:
README.md
source-repository head
type: git
location: https://github.com/yogsototh/adventofcode
library
hs-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-14 20:17:31 +00:00
Day14
2017-12-09 02:21:51 +00:00
other-modules:
2017-12-01 09:41:18 +00:00
Paths_adventofcode
build-depends:
2017-12-12 10:04:43 +00:00
array
, base >=4.7 && <5
2017-12-05 23:25:25 +00:00
, containers
2017-12-02 07:55:51 +00:00
, foldl
2017-12-07 12:11:46 +00:00
, parsec
2017-12-12 10:04:43 +00:00
, protolude
, text
2017-12-01 09:41:18 +00:00
default-language: Haskell2010
executable adventofcode-exe
hs-source-dirs:
app
main-is: Main.hs
ghc-options: -O2 -threaded -rtsopts -with-rtsopts=-N
2017-12-01 09:41:18 +00:00
build-depends:
2017-12-12 10:04:43 +00:00
adventofcode
, base
2017-12-09 02:21:51 +00:00
, containers
2017-12-12 10:04:43 +00:00
, pretty
, protolude
other-modules:
Paths_adventofcode
2017-12-01 09:41:18 +00:00
default-language: Haskell2010
test-suite adventofcode-test
type: exitcode-stdio-1.0
hs-source-dirs:
test
main-is: Spec.hs
build-depends:
2017-12-12 10:04:43 +00:00
HUnit
2017-12-01 09:41:18 +00:00
, adventofcode
2017-12-12 10:04:43 +00:00
, base
, protolude
2017-12-01 09:41:18 +00:00
, tasty
, tasty-hunit
2017-12-12 10:04:43 +00:00
other-modules:
Paths_adventofcode
ghc-options: -O2 -threaded -rtsopts -with-rtsopts=-N
2017-12-01 09:41:18 +00:00
default-language: Haskell2010