-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAdventOfCode2020.cabal
130 lines (125 loc) · 3.02 KB
/
AdventOfCode2020.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.34.3.
--
-- see: https://github.com/sol/hpack
name: AdventOfCode2020
version: 2.0.2.0
description: Please see the README on GitHub at <https://github.com/manuphatak/HaskellAdventOfCode2020#readme>
homepage: https://github.com/manuphatak/HaskellAdventOfCode2020#readme
bug-reports: https://github.com/manuphatak/HaskellAdventOfCode2020/issues
author: Manu Phatak
maintainer: [email protected]
copyright: 2020 Manu Phatak
license: MIT
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
ChangeLog.md
source-repository head
type: git
location: https://github.com/manuphatak/HaskellAdventOfCode2020
library
exposed-modules:
Advent.Parser
Advent.Utils
Day01.Solution
Day02.Parser
Day02.Solution
Day02.Utils
Day03.Solution
Day04.Solution
Day05.Solution
Day06.Solution
Day07.Solution
Day08.Solution
Day08.Utils
Day09.Solution
Day09.Utils
Day10.Solution
Day11.Solution
Day12.Solution
Day13.Solution
Day14.Solution
Day16.Parser
Day16.Solution
Day16.Utils
Day17.Solution
Day18.Internal
Day18.Solution
Day19.Solution
Day20.Solution
Day21.Solution
Day22.Solution
Day24.Solution
Practice.Foldable
Template.Solution
other-modules:
Paths_AdventOfCode2020
hs-source-dirs:
src
build-tool-depends:
hlint:hlint
, hpc-lcov:hpc-lcov
, implicit-hie:implicit-hie
build-depends:
base >=4.7 && <5
, containers
, hashable
, parsec
, unordered-containers
default-language: Haskell2010
test-suite AdventOfCode2020-test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Advent.ParserSpec
Advent.UtilsSpec
Day01.SolutionSpec
Day02.ParserSpec
Day02.SolutionSpec
Day02.UtilsSpec
Day03.SolutionSpec
Day04.SolutionSpec
Day05.SolutionSpec
Day06.SolutionSpec
Day07.SolutionSpec
Day08.SolutionSpec
Day08.UtilsSpec
Day09.SolutionSpec
Day09.UtilsSpec
Day10.SolutionSpec
Day11.SolutionSpec
Day12.SolutionSpec
Day13.SolutionSpec
Day14.SolutionSpec
Day16.SolutionSpec
Day16.UtilsSpec
Day17.SolutionSpec
Day18.SolutionSpec
Day19.SolutionSpec
Day20.SolutionSpec
Day21.SolutionSpec
Day22.SolutionSpec
Day24.SolutionSpec
Practice.FoldableSpec
Template.SolutionSpec
Paths_AdventOfCode2020
hs-source-dirs:
test
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall -O2
build-tool-depends:
hlint:hlint
, hpc-lcov:hpc-lcov
, implicit-hie:implicit-hie
build-depends:
AdventOfCode2020
, base >=4.7 && <5
, containers
, hashable
, hspec
, hspec-discover
, hspec-golden
, parsec
, unordered-containers
default-language: Haskell2010