-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadventofcode2017.cabal
104 lines (100 loc) · 3.65 KB
/
adventofcode2017.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
name: adventofcode2017
version: 0.1.0.0
synopsis: Solutions for adventofcode 2017
homepage: https://github.com/jaxwood/adventofcode2017#readme
license: BSD3
license-file: LICENSE
author: Jacob Lorenzen
maintainer: [email protected]
copyright: 2017 Jacob Lorenzen
category: Web
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
-- To avoid duplicated efforts in documentation and dealing with the
-- complications of embedding Haddock markup inside cabal files, it is
-- common to point users to the README.md file.
description: Please see the README on Github at <https://github.com/jaxwood/adventofcode2017#readme>
library
hs-source-dirs: src
exposed-modules:
Advent.Day01
, Advent.Day02
, Advent.Day03
, Advent.Day04
, Advent.Day05
, Advent.Day06
, Advent.Day07
, Advent.Day08
, Advent.Day09
, Advent.Day10
, Advent.Day11
, Advent.Day12
, Advent.Day13
, Advent.Day14
, Advent.Day15
, Advent.Day16
, Advent.Day17
, Advent.Day18
, Advent.Day19
, Advent.Day20
, Advent.Day21
, Advent.Day22
, Advent.Day23
, Advent.Day24
, Advent.Day25
build-depends: base >= 4.7 && < 5
, text
, containers
, unordered-containers
, parsec
, array
, vector
, split
default-language: Haskell2010
test-suite adventofcode2017-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
build-depends: base
, adventofcode2017
, hspec
, directory
, text
, containers
, unordered-containers
, parsec
, array
, vector
, split
ghc-options: -threaded -rtsopts -with-rtsopts=-N
other-modules:
Advent.Day01Spec
, Advent.Day02Spec
, Advent.Day03Spec
, Advent.Day04Spec
, Advent.Day05Spec
, Advent.Day06Spec
, Advent.Day07Spec
, Advent.Day08Spec
, Advent.Day09Spec
, Advent.Day10Spec
, Advent.Day11Spec
, Advent.Day12Spec
, Advent.Day13Spec
, Advent.Day14Spec
, Advent.Day15Spec
, Advent.Day16Spec
, Advent.Day17Spec
, Advent.Day18Spec
, Advent.Day19Spec
, Advent.Day20Spec
, Advent.Day21Spec
, Advent.Day22Spec
, Advent.Day23Spec
, Advent.Day24Spec
, Advent.Day25Spec
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/jaxwood/adventofcode2017