adventofcode/adventofcode.cabal

101 lines
2.1 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-26 20:00:07 +00:00
-- hash: 1e758d0525406b84a2b0161fe229f8b799eefbe00c43229a99d7360878eb5368
2017-12-01 09:41:18 +00:00
2017-12-18 23:34:26 +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>
2017-12-01 09:41:18 +00:00
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-15 05:53:13 +00:00
Day15
2017-12-17 02:01:29 +00:00
Day16
2017-12-18 23:34:26 +00:00
Day17
2017-12-22 07:02:11 +00:00
Day18
2017-12-23 09:14:29 +00:00
Day19
Day20
2017-12-26 20:00:07 +00:00
other-modules:
2017-12-23 09:14:29 +00:00
DayXX
2017-12-18 23:34:26 +00:00
Permutations
2017-12-01 09:41:18 +00:00
Paths_adventofcode
2017-12-18 23:34:26 +00:00
build-depends:
array
, base >=4.7 && <5
, containers
, foldl
2017-12-23 09:14:29 +00:00
, generic-lens
, lens
2017-12-18 23:34:26 +00:00
, parsec
, protolude
, text
, vector
2017-12-01 09:41:18 +00:00
default-language: Haskell2010
executable adventofcode-exe
hs-source-dirs:
app
2017-12-18 23:34:26 +00:00
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
2017-12-18 23:34:26 +00:00
main-is: Spec.hs
2017-12-01 09:41:18 +00:00
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
2017-12-18 23:34:26 +00:00
ghc-options: -O2 -threaded -rtsopts -with-rtsopts=-N
2017-12-01 09:41:18 +00:00
default-language: Haskell2010